From 0cdcb21a26107915a3dc8c44dd27c3aab7c71871 Mon Sep 17 00:00:00 2001 From: nxist2202005032 <1704041532@qq.com> Date: Sun, 16 Jun 2024 00:32:02 +0800 Subject: [PATCH] ADD file via upload --- GuanliyuanManageUI.java | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 GuanliyuanManageUI.java diff --git a/GuanliyuanManageUI.java b/GuanliyuanManageUI.java new file mode 100644 index 0000000..bde367c --- /dev/null +++ b/GuanliyuanManageUI.java @@ -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); + } + +}