鍍金池/ 教程/ Java/ Swing JScrollBar
Swing JRadioButton
Swing Layout布局
Swing JTextField
Swing JLabel
Swing開發(fā)環(huán)境安裝
Swing JComponent類
SWING ActionEvent事件類
Swing JScrollBar
Swing教程首頁
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 JScrollBar

JScrollBar類實(shí)現(xiàn)滾動(dòng)。

類聲明

以下是javax.swing.JScrollBar類的聲明:

public class JScrollBar
   extends JComponent
      implements Adjustable, Accessible

字段域

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

  • protected int blockIncrement

  • protected BoundedRangeModel model -- 模型表示滾動(dòng)條的最小,最大程度(又名“可視部分”)和當(dāng)前值。

  • protected int orientation

  • protected int unitIncrement

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

S.N. 構(gòu)造函數(shù) & 描述
1 JScrollBar() 
Creates a vertical scrollbar with the initial values.
2 JScrollBar(int orientation) 
Creates a scrollbar with the specified orientation and the initial values.
3 JScrollBar(int orientation, int value, int extent, int min, int max) 
Creates a scrollbar with the specified orientation, value, extent, minimum, and maximum.

類方法

S.N. 方法 & 描述
1 void addAdjustmentListener(AdjustmentListener l) 
Adds an AdjustmentListener.
2 protected void fireAdjustmentValueChanged(int id, int type, int value) 
Notify listeners that the scrollbar's model has changed.
3 AccessibleContext getAccessibleContext() 
Gets the AccessibleContext associated with this JScrollBar.
4 AdjustmentListener[] getAdjustmentListeners() 
Returns an array of all the AdjustmentListeners added to this JScrollBar with addAdjustmentListener().
5 int getBlockIncrement() 
For backwards compatibility with java.awt.Scrollbar.
6 int getBlockIncrement(int direction) 
Returns the amount to change the scrollbar's value by, given a block (usually "page") up/down request.
7 int getMaximum() 
The maximum value of the scrollbar is maximum - extent.
8 Dimension getMaximumSize() 
The scrollbar is flexible along it's scrolling axis and rigid along the other axis.
9 int getMinimum() 
Returns the minimum value supported by the scrollbar (usually zero).
10 Dimension getMinimumSize() 
The scrollbar is flexible along it's scrolling axis and rigid along the other axis.
11 BoundedRangeModel getModel() 
Returns data model that handles the scrollbar's four fundamental properties: minimum, maximum, value, extent.
12 int getOrientation() 
Returns the component's orientation (horizontal or vertical).
13 ScrollBarUI getUI() 
Returns the delegate that implements the look and feel for this component.
14 String getUIClassID() 
Returns the name of the LookAndFeel class for this component.
15 int getUnitIncrement() 
For backwards compatibility with java.awt.Scrollbar.
16 int getUnitIncrement(int direction) 
Returns the amount to change the scrollbar's value by, given a unit up/down request.
17 int getValue() 
Returns the scrollbar's value.
18 boolean getValueIsAdjusting() 
True if the scrollbar knob is being dragged.
19 int getVisibleAmount() 
Returns the scrollbar's extent, aka its "visibleAmount".
20 protected String paramString() 
Returns a string representation of this JScrollBar.
21 void removeAdjustmentListener(AdjustmentListener l) 
Removes an AdjustmentEvent listener.
22 void setBlockIncrement(int blockIncrement) 
Sets the blockIncrement property.
23 void setEnabled(boolean x) 
Enables the component so that the knob position can be changed.
24 void setMaximum(int maximum) 
Sets the model's maximum property.
25 void setMinimum(int minimum) 
Sets the model's minimum property.
26 void setModel(BoundedRangeModel newModel) 
Sets the model that handles the scrollbar's four fundamental properties: minimum, maximum, value, extent.
27 void setOrientation(int orientation) 
Set the scrollbar's orientation to either VERTICAL or HORIZONTAL.
28 void setUI(ScrollBarUI ui) 
Sets the L&F object that renders this component.
29 void setUnitIncrement(int unitIncrement) 
Sets the unitIncrement property.
30 void setValue(int value) 
Sets the scrollbar's value.
31 void setValueIsAdjusting(boolean b) 
Sets the model's valueIsAdjusting property.
32 void setValues(int newValue, int newExtent, int newMin, int newMax) 
Sets the four BoundedRangeModel properties after forcing the arguments to obey the usual constraints.
33 void setVisibleAmount(int extent) 
Set the model's extent property.
34 void updateUI() 
Overrides JComponent.updateUI.

方法繼承

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

  • java.lang.Object

JScrollBar 例子

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

SwingControlDemo.java
package com.yiibai.gui;
 
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
 
public class SwingControlDemo {
    
   private JFrame mainFrame;
   private JLabel headerLabel;
   private JLabel statusLabel;
   private JPanel controlPanel;

   public SwingControlDemo(){
      prepareGUI();
   }

   public static void main(String[] args){
      SwingControlDemo  swingControlDemo = new SwingControlDemo();      
      swingControlDemo.showScrollbarDemo();
   }

   private void prepareGUI(){
      mainFrame = new JFrame("Java Swing Examples");
      mainFrame.setSize(400,400);
      mainFrame.setLayout(new GridLayout(3,上一篇:SWING InputEvent事件類下一篇:Swing JFrame類和實(shí)例