Java - 如何创建自定义对话框?
我在 JFrame 上有一个按钮,单击该按钮时我希望弹出一个对话框,其中包含多个文本区域供用户输入。 我一直在四处寻找,试图弄清楚如何做到这一点,但我越来越困惑。 有人可以帮忙吗?
I have a button on a JFrame that when clicked I want a dialog box to popup with multiple text areas for user input. I have been looking all around to try to figure out how to do this but I keep on getting more confused. Can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
如果您不需要太多自定义行为,JOptionPane 是一个很好的节省时间的方法。 它负责确定/取消选项的放置和本地化,并且是显示自定义对话框的快速而简单的方法,而无需定义您自己的类。 大多数情况下,JOptionPane 中的“message”参数是一个字符串,但您也可以传入 JComponent 或 JComponent 数组。
例子:
If you don't need much in the way of custom behavior, JOptionPane is a good time saver. It takes care of the placement and localization of OK / Cancel options, and is a quick-and-dirty way to show a custom dialog without needing to define your own classes. Most of the time the "message" parameter in JOptionPane is a String, but you can pass in a JComponent or array of JComponents as well.
Example:
尝试使用这个简单的类来根据您的喜好自定义对话框:
Try this simple class for customizing a dialog to your liking:
Java 教程中的本课解释了每个 Swing 组件详细信息,包括示例和 API 链接。
This lesson from the Java tutorial explains each Swing component in detail, with examples and API links.
如果您使用 NetBeans IDE(目前最新版本是 6.5.1),您可以使用它来创建一个基本的 GUI java 应用程序,方法是使用“文件”->“新建项目”,然后选择“Java”类别,然后选择“Java 桌面应用程序”。
创建后,您将拥有一个简单的 GUI 应用程序,其中包含一个可以使用菜单选择打开的“关于”框。 您应该能够根据您的需要进行调整,并了解如何通过单击按钮打开对话框。
您将能够直观地编辑对话框。 删除那里的项目并添加一些文本区域。 尝试一下,如果遇到困难,请回来提出更多问题:)
If you use the NetBeans IDE (latest version at this time is 6.5.1), you can use it to create a basic GUI java application using File->New Project and choose the Java category then Java Desktop Application.
Once created, you will have a simple bare bones GUI app which contains an about box that can be opened using a menu selection. You should be able to adapt this to your needs and learn how to open a dialog from a button click.
You will be able to edit the dialog visually. Delete the items that are there and add some text areas. Play around with it and come back with more questions if you get stuck :)
好吧,您实际上创建了一个 JDialog,添加文本组件并使其可见。 如果您缩小遇到问题的具体范围,可能会有所帮助。
Well, you essentially create a JDialog, add your text components and make it visible. It might help if you narrow down which specific bit you're having trouble with.
我创建了一个自定义对话框 API。 在这里查看https://github.com/MarkMyWord03/CustomDialog。 它支持消息和确认框。 就像 joptionpane 中一样的输入和选项对话框将很快实现。
CUstomDialog API 的错误对话框示例:
自定义对话框错误消息
i created a custom dialog API. check it out here https://github.com/MarkMyWord03/CustomDialog. It supports message and confirmation box. input and option dialog just like in joptionpane will be implemented soon.
Sample Error Dialog from CUstomDialog API:
CustomDialog Error Message