我在 JFrame 中有公共静态变量。我在另一个 JFrame 中创建了一个 JLabel。我想将 JLabel 文本设置为该变量。当我从 netbeans 创建 JLabel 时,它会创建无法更改的自动生成代码。我使用了netbeans 7.2。
我可以使用myJLabel.setText(JFrame.variableName);
. 但问题是自动生成的代码不允许我编辑上面的代码片段。
我想通过在属性面板中设置而不是更改上面的代码来将文本设置为变量名。
有没有办法使用属性面板设置动态文本?
P.S. - I noticed in property panel, we can set jLabel value from existing component but these components reside in same JFrame. My variable reside in another JFrame