小程序组布局 Net-beans
我正在使用 APPLETS 开发在线考试系统。我正在使用net beans ide(6.9)。该项目要求我对面板使用组布局。我如何在 Net beans6.9 中做到这一点?
I am working on a online examination system using APPLETS. I am using the net beans ide(6.9). The project requies me to use group layout for panels. How do i do that in net beans6.9.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就Netbeans中的布局工具而言,它们都是由类类型驱动的。右键单击您的项目并转到
New ->其他-> Swing GUI 表单 -> JApplet 表单
。创建该类型之一后,您将获得编辑器,该编辑器允许您在打开该类时设计小程序布局。In terms of the layout tools in Netbeans, they're all driven off the class type. Right click on your project and go to
New -> Other -> Swing GUI Forms -> JApplet Form
. Once you create one of that type, you'll get the editor which allows you to design your applet layout whenever you open that class.