相当于wxPython中Tkinter的位置几何管理器
wxPython 中是否有相当于 Tkinter 的位置几何管理器的工具?
对于那些不知道的人,place 允许基于 xy 或相对 xy 坐标定位小部件。
我很喜欢这个几何管理器,因为它提供了对小部件定位的很多控制。
Is there an equivalent to Tkinter's place geometry manager in wxPython?
For those those that don't know, place allows the positioning of widgets based on x y or relative x y coordinates.
I'm a fan of this geometry manager simply because it offers a lot of control over widget positioning.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为最好的答案是“不,没有同等的”。您可以在构造函数中使用带有“pos”关键字参数的绝对定位,但这远不及
place
的强大功能。I think the best answer is "no, there is no equivalent". You can use absolute positioning with the "pos" keyword argument in the constructor, but that doesn't come close to the power of
place
.GridBagSizer 或 FlexGridSizer 有点像 Tkinter 的地方。当然,wx也支持绝对位置,尽管我不推荐这样做。
The GridBagSizer or FlexGridSizer are kind of like Tkinter's place. Of course, wx also supports absolute positions, although I do not recommend that.