简单的 Qt 嵌入式窗口问题
您打算如何使用嵌入式 Qt 初始化程序?目前我正在使用 QMainWindow,但这意味着在配置 Qt 时需要包含很多额外内容,并且在静态编译应用程序时会使应用程序变得更大。您打算使用什么来代替 QMainWindow?我不需要像最大化按钮这样的东西 - 使用小屏幕和小部件占据整个视图,没有边框。 谢谢
How are you meant to initialise the program using Qt embedded? At the moment I'm using QMainWindow but this means including a lot extra when configuring Qt and makes the applications a lot bigger when compiling them statically.What are you meant to use in place of QMainWindow? I don't need anything like maximise buttons - using a small screen with widgets taking up the entire view with no borders.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有父级的
QWidget
是一个窗口。如果您不想要 QMainWindow 提供的东西,则不必使用它 - 您可以使用任何 QWidget 子类。
A
QWidget
without a parent is a window.If you don't want the things provided by
QMainWindow
, you don't have to use it - you can use anyQWidget
subclass.