wxpython固定帧大小?
是否可以创建一个固定大小的框架,这样用户就无法更改框架的大小?
wx.Frame.__init__(self, None, -1, 'Hello',wx.DefaultPosition,(400, 300))
我正在使用 python 2.7
谢谢
Is it possible to create a frame with a fixed size, so the user can not change the size of the frame ?
wx.Frame.__init__(self, None, -1, 'Hello',wx.DefaultPosition,(400, 300))
I'm using python 2.7
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,有可能 -
Yes it is possible -
另一种选择是从框架中删除 RESIZE_BORDER 标志
样式位掩码,但保留默认的框架样式。您还需要禁用最大化框。
即)
style = wx.DEFAULT_FRAME_STYLE & ~wx.MAXIMIZE_BOX ^ wx.RESIZE_BORDER
Another option is to remove the RESIZE_BORDER flag from the Frames
style bitmask but keep the default frame style. You'll want to disable the maximize box too.
i.e)
style = wx.DEFAULT_FRAME_STYLE & ~wx.MAXIMIZE_BOX ^ wx.RESIZE_BORDER
您还可以使用 SetSizeHints 来控制要调整框架大小或根本不调整框架大小。
You can also use SetSizeHints to control how big or how small you want to resize it or not resize the frame at all.