禁止改变大小
public class ControlFormSize extends JFrame{
public ControlFormSize(){//构造方法
setTitle("设置窗体大小");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//设置关闭方式
setSize(400,300);
JPanel contentPane=new JPanel();//创建面板对象
contentPane.setLayout(new BorderLayout(0,0));//设置布局
setContentPane(contentPane);//设置内容面班
JLabel label=new JLabel("宽度:400,高度:300");//标签
contentPane.add(label,BorderLayout.CENTER);
JButton b=new JButton("禁值改变窗体大小");
contentPane.add(b,BorderLayout.NORTH);
b.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
do_button_actionPerformed(e);
}
});
}
public void do_button_actionPerformed(ActionEvent e){
setResizable(false);
}
public static void main(String[] args) {
ControlFormSize cf=new ControlFormSize();
cf.setVisible(true);
}
}图标在窗口显示一个圆形图标
public class DrawIcon implements Icon{
private int width;
private int height;
public int getIconHeight(){
return this.height;
}
public int getIconWidth(){
return this.width;
}
public DrawIcon(int width,int height){
this.width=width;
this.height=height;
}
public void paintIcon(Component arg0,Graphics arg1,int x,int y){
arg1.fillOval(x,y,width,height);//绘制一个圆形
}
public static void main(String[] args) {
DrawIcon icon=new DrawIcon(15,15);
JLabel j=new JLabel("测试",icon,SwingConstants.CENTER);
JFrame jf=new JFrame();
Container c=jf.getContentPane();
j.setIcon(icon);//为标签设置图标
c.add(j);
jf.setSize(250,200);//窗体大小,通过jframe对象实例化
jf.setVisible(true);//窗体显示
}
}
java设置窗口位置 java设置窗口大小不可变
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Java设置JSON字符串参数编码
本文详细介绍了如何在Java中创建JSON字符串以及在Java中设置JSON字符串参数编码的方法。
json 字符串 JSON Java