本文介绍了NetBeans-Java桌面应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有2个JFrame,我们将其命名为frm1和frm2
在frm1中,有一个JButton,在frm2中,有一个JLabel
现在我的问题是当我在JButton中执行动作时如何更改JLabel
我尝试使用以下代码:
I have 2 JFrames, lets name them frm1 and frm2
In frm1, there''s a JButton, in frm2, there''s a JLabel
Now my question is how can I change the JLabel when I perform an Action in JButton
I try using this code:
//in frm1
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
new frm1().SetLabelText();
}
//in frm2
public void SetLabelText() {
jLabel1.setText("Text Here");
}
推荐答案
这篇关于NetBeans-Java桌面应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!