如何在 Java Applet 中显示文本框、按钮等?
如何
- 显示常见的 GUI 元素,例如:文本框、
- 按钮
- 、单选按钮/下拉菜单
- 、标签等?
在从 Web 浏览器运行的 Java 小程序中
How can I show common GUI elements such as :
- Textbox
- Button
- Radios/Dropdowns
- Labels
etc in a java applet which would be run from a web browser?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个小程序教程从头开始,涵盖小程序教程。 realapplets.com/tutorial/GuiExample.html" rel="nofollow noreferrer">GUI 组件。
当然,还有很多其他小程序教程,几乎所有其中将涵盖 GUI 工作。
This applet tutorial starts from the beginning, and covers GUI components.
There are plenty of other applet tutorials around of course, almost all of which will cover GUI work.
JApplet
和JFrame
都扩展Container
< /a>,所以你只需 设置布局 和 添加组件,就像在任何其他 Swing GUI 中一样。JApplet
andJFrame
both extendContainer
, so you just set the layout and add the components like you would in any other Swing GUI.