鍍金池/ 教程/ Java/ Swing JSlider
Swing JRadioButton
Swing Layout布局
Swing JTextField
Swing JLabel
Swing開發(fā)環(huán)境安裝
Swing JComponent類
SWING ActionEvent事件類
Swing JScrollBar
Swing教程首頁(yè)
Swing JFileChooser
SWING ContainerEvent事件處理類
Swing AdjustmentListener接口
Swing WindowAdapter類
SWING ComponentListener接口
Swing JMenuBar類
Swing JPanel類及實(shí)例
Swing
SWING AdjustmentEvent事件處理
Swing JWindow類及實(shí)例
Swing介紹
Swing MouseMotionAdapter類
SWING WindowEvent事件類
Swing ItemListener接口
SWING MouseEvent事件類
Swing JMenu類
SWING KeyEvent事件類
Swing MouseMotionListener接口
Swing JProgressBar
SWING AWTEvent事件類
Swing JRadioButtonMenuItem類及例子
Swing KeyAdapter類
SWING ActionListener接口
Swing LayoutManager接口
SWING MouseMotionEvent事件處理
Swing Component類
Swing Container類
Swing CardLayout布局
Swing MouseAdapter類
Swing JSlider
Swing KeyListener接口
Swing FocusAdapter類
Swing JColorChooser
Swing ImageIcon
Swing JComboBox
Swing GroupLayout布局類
Swing JOptionPane
Swing GridBagLayout布局類
Swing JMenuItem類
Swing MouseListener Interface
Swing事件適配器
SWING ComponentEvent處理類
SWING PaintEvent事件類
Swing FlowLayout布局類
SWING Event事件類
Swing FocusListener接口
Swing控件
Swing JButton
Swing JCheckBox
Swing SpringLayout布局類
Swing容器
Swing事件處理
Swing事件監(jiān)聽器
Swing Menu菜單類
Swing JList
Swing ContainerListener接口
Swing LayoutManager2接口
Swing JFrame類和實(shí)例
Swing JTextArea
SWING InputEvent事件類
Swing BorderLayout布局
Swing WindowListener接口
Swing JCheckboxMenuItem類及例子
Swing JSpinner
Swing GridLayout布局類
Swing JPopupMenu類及實(shí)例

Swing JSlider

JSlider 類是一個(gè)組件,它可以讓用戶以圖形方式選擇一個(gè)值,有界區(qū)間內(nèi)通過滑動(dòng)旋鈕。

類聲明

以下是聲明 javax.swing.JSlider類:

public class JSlider
   extends JComponent
      implements SwingConstants, Accessible

字段域

以下是javax.swing.JSlider類的字段:

  • protected ChangeEvent changeEvent -- 因?yàn)槭录奈ㄒ唬ㄖ蛔x)狀態(tài)是源屬性,只有一個(gè)ChangeEvent事件需要每個(gè)滑桿實(shí)例。

  • protected ChangeListener changeListener -- ChangeListener(沒有后綴)是我們添加監(jiān)聽器滑塊模型。

  • protected int majorTickSpacing -- 數(shù)目之間的主要刻度標(biāo)記 - 標(biāo)記向上突破的次要刻度線的值。

  • protected int minorTickSpacing -- 數(shù)目的次要刻度線 - 主要刻度之間發(fā)生的小標(biāo)記之間的值。

  • protected int orientation -- 滑動(dòng)件是否是水平或垂直的默認(rèn)值是水平的。

  • protected BoundedRangeModel sliderModel -- 該數(shù)據(jù)模型來處理數(shù)值的最大值,最小值,及滑塊的當(dāng)前位置值。

  • protected boolean snapToTicks -- 如果為true,旋鈕(和它所代表的數(shù)據(jù)值)解析到最接近用戶定位旋鈕旁的對(duì)勾。

類構(gòu)造函數(shù)

S.N. 構(gòu)造函數(shù) & 描述
1 JSlider() 
Creates a horizontal slider with the range 0 to 100 and an initial value of 50.
2 JSlider(BoundedRangeModel brm) 
Creates a horizontal slider using the specified BoundedRangeModel.
3 JSlider(int orientation) 
Creates a slider using the specified orientation with the range 0 to 100 and an initial value of 50.
4 JSlider(int min, int max) 
Creates a horizontal slider using the specified min and max with an initial value equal to the average of the min plus max.
5 JSlider(int min, int max, int value) 
Creates a horizontal slider using the specified min, max and value.
6 JSlider(int orientation, int min, int max, int value) 
Creates a slider with the specified orientation and the specified minimum, maximum, and initial values.

類方法

S.N. 方法 & 描述
1 void addChangeListener(ChangeListener l) 
Adds a ChangeListener to the slider.
2 protected ChangeListener createChangeListener() 
Subclasses that want to handle ChangeEvents from the model differently can override this to return an instance of a custom ChangeListener implementation.
3 Hashtable createStandardLabels(int increment) 
Creates a Hashtable of numerical text labels, starting at the slider minimum, and using the increment specified.
4 Hashtable createStandardLabels(int increment, int start)
Creates a Hashtable of numerical text labels, starting at the starting point specified, and using the increment specified.
5 protected void fireStateChanged() 
Send a ChangeEvent, whose source is this JSlider, to all ChangeListeners that have registered interest in ChangeEvents.
6 AccessibleContext getAccessibleContext() 
Gets the AccessibleContext associated with this JSlider.
7 ChangeListener[] getChangeListeners() 
Returns an array of all the ChangeListeners added to this JSlider with addChangeListener().
8 int getExtent() 
Returns the "extent" from the BoundedRangeModel.
9 boolean getInverted() 
Returns true if the value-range shown for the slider is reversed.
10 Dictionary getLabelTable() 
Returns the dictionary of what labels to draw at which values.
11 int getMajorTickSpacing() 
This method returns the major tick spacing.
12 int getMaximum() 
Returns the maximum value supported by the slider from the BoundedRangeModel.
13 int getMinimum() 
Returns the minimum value supported by the slider from the BoundedRangeModel.
14 int getMinorTickSpacing() 
This method returns the minor tick spacing.
15 BoundedRangeModel getModel() 
Returns the BoundedRangeModel that handles the slider's three fundamental properties: minimum, maximum, value.
16 int getOrientation() 
Return this slider's vertical or horizontal orientation.
17 boolean getPaintLabels() 
Tells if labels are to be painted.
18 boolean getPaintTicks() 
Tells if tick marks are to be painted.
19 boolean getPaintTrack() 
Tells if the track (area the slider slides in) is to be painted.
20 boolean getSnapToTicks() 
Returns true if the knob (and the data value it represents) resolve to the closest tick mark next to where the user positioned the knob.
21 SliderUI getUI() 
Gets the UI object which implements the L&F for this component.
22 String getUIClassID() 
Returns the name of the L&F class that renders this component.
23 int getValue() 
Returns the slider's current value from the BoundedRangeModel.
24 boolean getValueIsAdjusting() 
Returns the valueIsAdjusting property from the model.
25 protected String paramString() 
Returns a string representation of this JSlider.
26 void removeChangeListener(ChangeListener l)
Removes a ChangeListener from the slider.
27 void setExtent(int extent) 
Sets the size of the range "covered" by the knob.
28 void setFont(Font font) 
Sets the font for this component.
29 void setInverted(boolean b) 
Specify true to reverse the value-range shown for the slider and false to put the value range in the normal order.
30 void setLabelTable(Dictionary labels) 
Used to specify what label will be drawn at any given value.
31 void setMajorTickSpacing(int n) 
This method sets the major tick spacing.
32 void setMaximum(int maximum) 
Sets the slider's maximum value to maximum.
33 void setMinimum(int minimum) 
Sets the slider's minimum value to minimum.
34 void setMinorTickSpacing(int n) 
This method sets the minor tick spacing.
35 void setModel(BoundedRangeModel newModel) 
Sets the BoundedRangeModel that handles the slider's three fundamental properties: minimum, maximum, value.
36 void setOrientation(int orientation) 
Set the slider's orientation to either SwingConstants.VERTICAL or SwingConstants.HORIZONTAL.
37 void setPaintLabels(boolean b) 
Determines whether labels are painted on the slider.
38 void setPaintTicks(boolean b) 
Determines whether tick marks are painted on the slider.
39 void setPaintTrack(boolean b) 
Determines whether the track is painted on the slider.
40 void setSnapToTicks(boolean b) 
Specifying true makes the knob (and the data value it represents) resolve to the closest tick mark next to where the user positioned the knob.
41 void setUI(SliderUI ui) 
Sets the UI object which implements the L&F for this component.
42 void setValue(int n) Sets the slider's current value to n.
43 void setValueIsAdjusting(boolean b) 
Sets the model's valueIsAdjusting property.
44 protected void updateLabelUIs() 
Updates the UIs for the labels in the label table by calling updateUI on each label.
45 void updateUI() 
Resets the UI property to a value from the current look and feel.

方法繼承

這個(gè)類從以下類繼承的方法:

  • javax.swing.JComponent

  • java.awt.Container

  • java.awt.Component

  • java.lang.Object

JSlider 例子

選擇使用任何編輯器創(chuàng)建以下java程序在 D:/ > SWING > com > yiibai > gui >

SwingControlDemo.java
package com.yiibai.gui;
 
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;上一篇:Swing JRadioButton下一篇:Swing