You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
url/ShouruqingkuangManageUI.java

29 lines
789 B

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);
}
}