JFrame:简单应用
2023-12-26 18:37:48
import javax.swing.*;
import java.awt.*;
public class JFramemy01 {
public static void main(String[] args) {
new MyJframe2().init();
}
}
class MyJframe2 extends JFrame{
public void init(){
this.setBounds(100,100,200,300);
this.setVisible(true);
JLabel label=new JLabel("!!!!!!");
this.add(label);
//获得容器
Container container=this.getContentPane();
container.setBackground(Color.cyan);
}
}
import javax.swing.*;
import java.awt.*;
public class JFramemy02 {
public static void main(String[] args) {
new MyJframe3().init();
}
}
class MyJframe3 extends JFrame{
public void init(){
this.setBounds(100,100,200,300);
this.setVisible(true);
JLabel label=new JLabel("!!!!!!");
this.add(label);
//center
label.setHorizontalAlignment(SwingConstants.CENTER);
//获得容器
Container container=this.getContentPane();
container.setBackground(Color.cyan);
}
}
文章来源:https://blog.csdn.net/2201_75903640/article/details/134071917
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!