parent
402a8b9a29
commit
66bd2a9361
@ -0,0 +1,28 @@
|
||||
package com.ym.view;
|
||||
|
||||
import java.awt.BorderLayout;
|
||||
|
||||
import javax.swing.JFrame;
|
||||
import javax.swing.JPanel;
|
||||
import javax.swing.border.EmptyBorder;
|
||||
|
||||
public class ShouruqingkuangManageUI extends JFrame{
|
||||
|
||||
private JPanel contentPane;
|
||||
|
||||
public static void main(String[] args) {
|
||||
new ShouruqingkuangManageUI().setVisible(true);
|
||||
}
|
||||
public ShouruqingkuangManageUI() {
|
||||
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 ShouruqingkuangManageUIListPanel(""), BorderLayout.CENTER);
|
||||
this.setLocationRelativeTo(null);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue