iconspinner.java

来自「java swing 开发代码」· Java 代码 · 共 41 行

JAVA
41
字号
// IconSpinner.java// An implementation of JSpinner with customized content--icons in this case.// A standard spinner model is used with a custom editor (IconEditor.java).//package	jswing.ch07;import javax.swing.*;import java.awt.*;public class IconSpinner extends JFrame {  public IconSpinner() {    super("JSpinner Icon Test");    setSize(300,80);    setDefaultCloseOperation(EXIT_ON_CLOSE);    Container c = getContentPane();    c.setLayout(new GridLayout(0,2));    Icon nums[] = new Icon[] {      new ImageIcon("1.gif"),      new ImageIcon("2.gif"),      new ImageIcon("3.gif"),      new ImageIcon("4.gif"),      new ImageIcon("5.gif"),      new ImageIcon("6.gif")    };    JSpinner s1 = new JSpinner(new SpinnerListModel(nums));    s1.setEditor(new IconEditor(s1));    c.add(new JLabel(" Icon Spinner"));    c.add(s1);    setVisible(true);  }  public static void main(String args[]) {    new IconSpinner();  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?