在java swing 中,怎样获取按钮上的内容,并显示在另一个窗体上

 我来答
lengon
2011-12-28 · TA获得超过2125个赞
知道小有建树答主
回答量:1769
采纳率:0%
帮助的人:1020万
展开全部
在A窗口调用 B.setcontent(button.getlabel()); 在B窗口里面的setcontent(string)方法里面设置button.setlabel(string)的方法。
追问
能不能具体点代码?谢谢
追答
public class FrameWork extends JFrame{

FrameWork1 fw = new FrameWork1();
public FrameWork() {
this.setName("Log Tools");
this.setSize(295, 260);
final Container con = getContentPane();
con.setLayout(null);
final JButton addstylebut = new JButton("11");
addstylebut.setBounds(0, 15, 100, 20);
addstylebut.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
fw.setLabel(addstylebut.getLabel());
}
});
this.add(addstylebut);
this.setVisible(true);
this.repaint();
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}

public static void main(String args[]) {
FrameWork fw = new FrameWork();
}
}

public class FrameWork1 extends JFrame{
JButton addstylebut = new JButton("Fr");
public FrameWork1() {
this.setName("Log Tools");
this.setSize(295, 260);
final Container con = getContentPane();
con.setLayout(null);
//final JButton addstylebut = new JButton("22");
addstylebut.setBounds(0, 15, 100, 20);
this.add(addstylebut);
this.setVisible(true);
this.repaint();
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public void setLabel(String label){
addstylebut.setLabel(label);

this.repaint();
}

}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式