java的swing..setBackground(Color.BLUE);// 1 背景颜色不显示啊 ??2 JDialog 和 JOptionPane 有何区别?
importjava.awt.*;importjavax.swing.*;importjava.awt.event.*;publicclassUseCase3extend...
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class UseCase3 extends JFrame{
private static final long serialVersionUID=1L;
public UseCase3() {
// TODO 自动生成的构造函数存根
setVisible(true);
setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
setTitle("登录窗体");
setBounds(0, 0, 800, 800);
setBackground(Color.green);
//setBackground(Color.BLUE);// 1 背景颜色不显示啊 ??????///2 JDialog 和 JOptionPane 有何区别???
Container cp =getContentPane();
cp.setLayout(null);
///
JLabel jl=new JLabel("用户名:");
jl.setBounds(110, 10, 200, 20);
final JTextField name=new JTextField();
name.setBounds(330, 10, 200, 20);
///
JLabel jl2=new JLabel("密码:");
jl2.setBounds(110,50,200, 20);
final JPasswordField password=new JPasswordField();
password.setBounds(330, 50, 200, 20);
////
cp.add(jl);
cp.add(jl2);
cp.add(name);
cp.add(password);
////
JButton jb=new JButton("确定");
jb.setBounds(110, 90, 200, 20);
cp.add(jb);
///
JButton button=new JButton("重置");
//button.setText("重置"); ////这两种方法均可以
button.setBounds(330, 90, 200, 20);
cp.add(button);
//getContentPane().add(button); ////这两种方法均可以
}
public static void main(String[] args) {
// TODO 自动生成的方法存根
new UseCase3();
}
}//public class UseCase3 展开
import javax.swing.*;
import java.awt.event.*;
public class UseCase3 extends JFrame{
private static final long serialVersionUID=1L;
public UseCase3() {
// TODO 自动生成的构造函数存根
setVisible(true);
setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
setTitle("登录窗体");
setBounds(0, 0, 800, 800);
setBackground(Color.green);
//setBackground(Color.BLUE);// 1 背景颜色不显示啊 ??????///2 JDialog 和 JOptionPane 有何区别???
Container cp =getContentPane();
cp.setLayout(null);
///
JLabel jl=new JLabel("用户名:");
jl.setBounds(110, 10, 200, 20);
final JTextField name=new JTextField();
name.setBounds(330, 10, 200, 20);
///
JLabel jl2=new JLabel("密码:");
jl2.setBounds(110,50,200, 20);
final JPasswordField password=new JPasswordField();
password.setBounds(330, 50, 200, 20);
////
cp.add(jl);
cp.add(jl2);
cp.add(name);
cp.add(password);
////
JButton jb=new JButton("确定");
jb.setBounds(110, 90, 200, 20);
cp.add(jb);
///
JButton button=new JButton("重置");
//button.setText("重置"); ////这两种方法均可以
button.setBounds(330, 90, 200, 20);
cp.add(button);
//getContentPane().add(button); ////这两种方法均可以
}
public static void main(String[] args) {
// TODO 自动生成的方法存根
new UseCase3();
}
}//public class UseCase3 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)
1个回答
2015-06-10
展开全部
Container cp =this.getContentPane();
cp.setLayout(null);
cp.setBackground(Color.green);
被cp覆盖了,所以要在cp中设置背景色
cp.setLayout(null);
cp.setBackground(Color.green);
被cp覆盖了,所以要在cp中设置背景色
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询