parent
75c719665c
commit
4fe7f1e6fe
@ -0,0 +1,28 @@
|
||||
package view;
|
||||
|
||||
import java.awt.BorderLayout;
|
||||
|
||||
import javax.swing.JFrame;
|
||||
import javax.swing.JPanel;
|
||||
import javax.swing.border.EmptyBorder;
|
||||
|
||||
public class ZhuhuManageUI extends JFrame{
|
||||
|
||||
private JPanel contentPane;
|
||||
|
||||
public static void main(String[] args) {
|
||||
new ZhuhuManageUI().setVisible(true);
|
||||
}
|
||||
public ZhuhuManageUI() {
|
||||
setTitle("住户管理");
|
||||
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
|
||||
setBounds(100, 100, 879, 665);
|
||||
contentPane = new JPanel();
|
||||
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
|
||||
setContentPane(contentPane);
|
||||
contentPane.setLayout(new BorderLayout(0, 0));
|
||||
add(new ZhuhuManageUIListPanel(""), BorderLayout.CENTER);
|
||||
this.setLocationRelativeTo(null);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue