当我将 JList 添加到框架时,我将其添加为滚动窗格,但是当我这样做时框架变为空这是我的代码
frame2 = new JFrame();
frame2.setBounds(100, 100, 543, 432);
frame2.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame2.getContentPane().setLayout(null);
JList list = new JList(names);
list.setBounds(36, 11, 161, 345);
list.setVisibleRowCount(10);
frame2.getContentPane().add(new JScrollPane(list));
JList list_1 = new JList(access);
list_1.setBounds(356, 11, 161, 345);
list_1.setVisibleRowCount(10);
frame2.getContentPane().add(new JScrollPane(list_1));
frame2.setVisible(true);
慕侠2389804
鸿蒙传说
相关分类