使用java中菜单栏的选项加载多个文件
我使用 java Jpanel、组件等开发了一个编辑器......编辑器中有 2 个文本区域。当我从菜单栏中选择“打开文件”选项时,我可以将文件的内容加载到一个文本区域。但是我如何向菜单栏添加另一个选项以将另一个文件的内容加载到第二个文本框?
I have developed an editor using java Jpanel, component, etc....I have 2 text areas in the editor. When i choose open a file option from the menubar i'm able to load the content of the file to one textarea. But how can i add another option to the menu bar to load the content of another file to the second text box?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以添加两个菜单项,将对所需目标文本区域的引用传递给每个
操作
。或者,根据您的设计,添加一个菜单项,其Action
在两个目标文本区域之间交替。You can add two menu items, passing a reference to the desired destination text area to each
Action
. Alternatively, depending on your design, add a single menu item whoseAction
alternates between the two destination text areas.