java复选框问题
使用文本域类TextArea的append()方法编写程序checkTest.java,实现下图的功能。在文本域类窗口中完全反映复选框的选择状态。(程序代码最好不要太复杂...
使用文本域类TextArea的append()方法编写程序checkTest.java,实现下图的功能。在文本域类窗口中完全反映复选框的选择状态。(程序代码最好不要太复杂,力求用最简单的代码实现题目要求功能,谢谢啦~)
展开
2个回答
展开全部
这是所有的代码
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
public class B extends JFrame implements ActionListener{
JCheckBox ch;
JTextArea ta;
public B()
{
init();
}
public void init()
{
setSize(300,300);
setLayout(null);
ta=new JTextArea(10,20);
ta.setBounds(20,20,100,100);
add(ta);
ch=new JCheckBox("1");
ch.setBounds(100,100,50,100);
ch.addActionListener(this);
add(ch);
}
public static void main(String[] args) {
new B().setVisible(true);
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource().equals(ch))
{
if(ch.isSelected())
{
ta.append("CheckBox"+ch.getText()+"cliked");
}
else
{
ta.append("CheckBox"+ch.getText()+"is No cliked");
}
}
}
}
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
public class B extends JFrame implements ActionListener{
JCheckBox ch;
JTextArea ta;
public B()
{
init();
}
public void init()
{
setSize(300,300);
setLayout(null);
ta=new JTextArea(10,20);
ta.setBounds(20,20,100,100);
add(ta);
ch=new JCheckBox("1");
ch.setBounds(100,100,50,100);
ch.addActionListener(this);
add(ch);
}
public static void main(String[] args) {
new B().setVisible(true);
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource().equals(ch))
{
if(ch.isSelected())
{
ta.append("CheckBox"+ch.getText()+"cliked");
}
else
{
ta.append("CheckBox"+ch.getText()+"is No cliked");
}
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询