Qt 设计器 - 如何创建 QDialog?
是否可以在 Qt-creator 中创建 QDialog,例如 QForm(通过单击)?我找到了几个示例,但 QDialog 是通过编程创建的。 我想在 QDialog 上拖放按钮、列表视图和其他组件。 现在我只能通过修改代码来添加新组件。
谢谢
It is possibility to create QDialog in Qt-creator like for example QForm (by clicking)? I've found several samples, but QDialog is created programmatically.
I want to drag and drop buttons, listview and others components on QDialog.
Now I can add new components only by modifying code.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
选择
文件/新建...
;然后从文件和类
中选择Qt
,并从右侧面板中选择Qt Designer Form Class
。Choose ...
然后将您带到另一个页面,您可以在其中选择Dialog
。Select
File/New ...
; then fromFiles and Classes
, pickQt
, and selectQt Designer Form Class
from the right-hand-side panel.Choose ...
then takes you to another page where you can select aDialog
.菜单项
File|New...
使您可以在templates\forms
选项卡中选择各种对话框类型。 (Qt 版本 4.7.0。)The menu item
File|New...
gives you a choice of various dialog box types, in thetemplates\forms
tab. (Qt version 4.7.0.)