Skip to content

Latest commit

 

History

History
89 lines (63 loc) · 946 Bytes

15-swing.md

File metadata and controls

89 lines (63 loc) · 946 Bytes

javax.swing.*;

  1. 窗口类(JFrame)
JFrame()
JFrame("")

方法:

setTitle()
setSize()
setLocation()
setBounds()
setReSizable()
setDefaultCloseOperation()
setVisible(true)
  1. JPanel
setLayout()
setBackground(Color.blue)

颜色类:Color

  1. 控件
  • JLabel

    setText()
    getText()
    setSize()
    setLocation()
    setBounds()
    setIcon()
  • JButton

  • JTextField

  • JPasswordField

    ....
    getEchoChar() 
  • JTextArea

    ....
    setLineWrap()
  • JScrollPane

  • JRadioButton

  • ButtonGroup

  • JCheckBox

  • JProgressBar

    setValue()
    setString()
    setStringPainted(true)
  • JList

  • JComboBox

  • JTable

  • 菜单

    JMenuBar
    JMenu
    JMenuItem