PyQt:从右到左控件
我需要所有控件都正确对齐。因此,调整大小时,它们应该随窗口的右上角而不是左上角移动。 在 Visual Studio 中,我只需将任何控件的 Anchor 属性设置为向右和向上。但 PyQt 没有 Anchor 或 Dock 属性。将 layoutDirection
设置为 RightToLeft
没有帮助。
注意:我正在尝试使用 Qt Designer 来学习 PyQt。
I need my all controls to be right aligned. so when resizing they should move with the right upped corner of window instead of left upper.
In visual studio, I simply set the Anchor property of any control to right and up. but PyQt has no Anchor or Dock property. Setting layoutDirection
to RightToLeft
didn't help.
note: I'm trying to learn PyQt using Qt Designer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这很简单:
It's quite easy:
看看QDockWidget。这个示例也可能有用。
Take a look at QDockWidget. This example might also be useful.