将另一个类的 JTextarea 输出组合到主类框架的 JTextArea 中?
我有一个类将输出显示到 JTextArea 中。意味着成功运行后,它将在文本区域中显示输出。
我还有一个主类,它将类与几个按钮组合在一起,以启动特定类中代码的执行。这个主类创建了一个带有几个按钮的 GUI。现在我需要将上面的 JTextArea 合并到主框架中。
我该怎么做?
I have one class that displays the output into a JTextArea. Meaning after successful run, it will display the output in a text area.
I have also one main class that combines classes together with several buttons to initiate execution of code in specific classes. This main class creates a GUI with several buttons. Now I need the above JTextArea to incorporated into the main frame.
How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用(可能是嵌套的)布局。有关更多详细信息,请参阅 Java 教程中的使用布局管理器。
Using a (possibly nested) Layout. See Using Layout Managers in the Java Tutorial for further details.