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.
16 lines
418 B
16 lines
418 B
package com.utils;
|
|
|
|
import javax.swing.JFrame;
|
|
|
|
public class FrameOptionlyx {
|
|
public FrameOptionlyx(JFrame main) {
|
|
// TODO Auto-generated constructor stub
|
|
main.setSize(900, 600);
|
|
main.setLocationRelativeTo(null);
|
|
main.setResizable(false);// 禁止修改窗口大小
|
|
main.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
|
main.setVisible(true);
|
|
|
|
}
|
|
}
|