随笔分类 -  GUI-Swing

跟着狂神学习之jGUI-Swing
摘要:3.6列表 下拉框 public class TestComboboxDemo01 extends JFrame { public TestComboboxDemo01(){ Container container = this.getContentPane(); JComboBox comboBo 阅读全文
posted @ 2020-05-26 17:19 小徐学狂 阅读(100) 评论(0) 推荐(0)
摘要:3.4 面板 JPanel public class JPanelDemo extends JFrame { public JPanelDemo() { Container container = this.getContentPane(); container.setLayout(new Grid 阅读全文
posted @ 2020-05-26 15:59 小徐学狂 阅读(301) 评论(0) 推荐(0)
摘要:3.Swing 3.1窗口 、 容器 public class JFrameDemo { //init(); 初始化 public void init(){ JFrame frame = new JFrame("这是第一个JFrame窗口"); frame.setVisible(true); fra 阅读全文
posted @ 2020-05-26 15:58 小徐学狂 阅读(136) 评论(0) 推荐(0)