parent
0f28a87e2c
commit
0cdcb21a26
@ -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 GuanliyuanManageUI extends JFrame{
|
||||
|
||||
private JPanel contentPane;
|
||||
|
||||
public static void main(String[] args) {
|
||||
new GuanliyuanManageUI().setVisible(true);
|
||||
}
|
||||
public GuanliyuanManageUI() {
|
||||
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 GuanliyuanManageUIListPanel(""), BorderLayout.CENTER);
|
||||
this.setLocationRelativeTo(null);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue