在调整 QWidget 大小时调整 QWidget 中的 QTextEdit 大小
如何在调整 QWidget 大小时使 QTextEdit 在 QWidget 中调整大小? 我应该为 QWidget 重载 resizeEvent 函数吗?
How to make QTextEdit to be resized in a QWidget while the QWidget is being resized?
Should I overload resizeEvent function for the QWidget?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您也应该使用布局来实现这一点。巨魔们有一个关于如何执行此操作的出色教程:http://qt。 nokia.com/doc/4.6/layout.html。
You should use layouts too achive this. There is an excellent tutorial by the trolls on how to do this: http://qt.nokia.com/doc/4.6/layout.html.
不,您应该为 QTextEdit 对象设置 sizePolicy 属性。
No, you should set the sizePolicy property for your QTextEdit object.