java文本框字体颜色
问题描述:当单击复选框时,文本框的文字显示不同的字体,当单击单选按钮时,文本框的文字显示不同的颜色。复选框和单选按钮是两种状态按钮,它们可为用户提供是/否或真/假选择。但...
问题描述:当单击复选框时,文本框的文字显示不同的字体,当单击单选按钮时,文本框的文字显示不同的颜色。
复选框和单选按钮是两种状态按钮,它们可为用户提供是/否或真/假选择。但复选框和单选按钮不同,用户可以从成组使用的复选框中选择一项或多项,但在成组使用的单选按钮中一次只能选择一个单选按钮。单选按钮常用于互相排斥的选项。 展开
复选框和单选按钮是两种状态按钮,它们可为用户提供是/否或真/假选择。但复选框和单选按钮不同,用户可以从成组使用的复选框中选择一项或多项,但在成组使用的单选按钮中一次只能选择一个单选按钮。单选按钮常用于互相排斥的选项。 展开
3个回答
展开全部
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class FontTest extends JFrame implements ActionListener
{
JPanel jp=new JPanel();
JRadioButton rb1=new JRadioButton("红色");
JRadioButton rb2=new JRadioButton("蓝色");
ButtonGroup bg=new ButtonGroup();
JCheckBox cb1=new JCheckBox("斜体");
JCheckBox cb2=new JCheckBox("粗体");
JLabel l1=new JLabel("选择文本颜色:");
JLabel l2=new JLabel("选择文本字体:");
JTextArea text=new JTextArea();
public FontTest()
{
jp.setLayout(null);
l1.setBounds(10,10,120,20);
l2.setBounds(10,40,120,20);
rb1.setBounds(140,10,60,20);
rb2.setBounds(220,10,60,20);
bg.add(rb1);
bg.add(rb2);
rb1.addActionListener(this);
rb2.addActionListener(this);
cb1.setBounds(140,40,60,20);
cb2.setBounds(220,40,60,20);
cb1.addActionListener(this);
cb2.addActionListener(this);
text.setBounds(20,60,250,100);
text.setEditable(false);
text.setText("测试颜色和字体,测试颜色和字体!");
jp.add(l1);
jp.add(l2);
jp.add(rb1);
jp.add(rb2);
jp.add(cb1);
jp.add(cb2);
jp.add(text);
this.add(jp);
this.setBounds(100,100,300,200);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public void actionPerformed(ActionEvent e)
{
Font f1=new Font("斜体",Font.ITALIC,12);
Font f2=new Font("粗体",Font.BOLD,12);
if(e.getSource()==rb1)
{
text.setForeground(Color.red);
}
else if(e.getSource()==rb2)
{
text.setForeground(Color.blue);
}
else if(e.getSource()==cb1)
{
text.setFont(f1);
}
else if(e.getSource()==cb2)
{
text.setFont(f2);
}
}
public static void main(String[] args)
{
new FontTest();
}
}
很简单的一个程序,满足你的要求。
import java.awt.*;
import java.awt.event.*;
public class FontTest extends JFrame implements ActionListener
{
JPanel jp=new JPanel();
JRadioButton rb1=new JRadioButton("红色");
JRadioButton rb2=new JRadioButton("蓝色");
ButtonGroup bg=new ButtonGroup();
JCheckBox cb1=new JCheckBox("斜体");
JCheckBox cb2=new JCheckBox("粗体");
JLabel l1=new JLabel("选择文本颜色:");
JLabel l2=new JLabel("选择文本字体:");
JTextArea text=new JTextArea();
public FontTest()
{
jp.setLayout(null);
l1.setBounds(10,10,120,20);
l2.setBounds(10,40,120,20);
rb1.setBounds(140,10,60,20);
rb2.setBounds(220,10,60,20);
bg.add(rb1);
bg.add(rb2);
rb1.addActionListener(this);
rb2.addActionListener(this);
cb1.setBounds(140,40,60,20);
cb2.setBounds(220,40,60,20);
cb1.addActionListener(this);
cb2.addActionListener(this);
text.setBounds(20,60,250,100);
text.setEditable(false);
text.setText("测试颜色和字体,测试颜色和字体!");
jp.add(l1);
jp.add(l2);
jp.add(rb1);
jp.add(rb2);
jp.add(cb1);
jp.add(cb2);
jp.add(text);
this.add(jp);
this.setBounds(100,100,300,200);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public void actionPerformed(ActionEvent e)
{
Font f1=new Font("斜体",Font.ITALIC,12);
Font f2=new Font("粗体",Font.BOLD,12);
if(e.getSource()==rb1)
{
text.setForeground(Color.red);
}
else if(e.getSource()==rb2)
{
text.setForeground(Color.blue);
}
else if(e.getSource()==cb1)
{
text.setFont(f1);
}
else if(e.getSource()==cb2)
{
text.setFont(f2);
}
}
public static void main(String[] args)
{
new FontTest();
}
}
很简单的一个程序,满足你的要求。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
说的有点不算怎么清楚的,
真的,这个问题其实也不算难,更具体点好吧
真的,这个问题其实也不算难,更具体点好吧
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不错,学习下。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询