COMBOBOX 的垂直大小不适合 wxpython
我想知道是否有一种方法可以垂直调整组合框的大小,
这不起作用
self.combo1 = wx.ComboBox(self, -1, value='dsadas', pos=wx.Point(10, 30),
size=wx.Size(120, 423450), choices=areaList)
,它会调整 x 的大小,但不会调整 y 值的大小。如果我们更改 y 值,组合框将保持不变。
我使用的是 Windows 7 64 位
i am wondering if there is a way to size a combobox vertically
This does not work
self.combo1 = wx.ComboBox(self, -1, value='dsadas', pos=wx.Point(10, 30),
size=wx.Size(120, 423450), choices=areaList)
It will size for x but it will not size for the y value. If we change the y value, the combo box will remain the same.
I am using Windows 7 64 bit
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果本机小部件不接受该参数,我认为 wx.ComboBox 不会允许设置垂直尺寸。请记住,wxPython 包装了平台的本机小部件,并且必须符合这些小部件的限制。
另一方面,您可以使用 ComboCtrl (wx.combo.ComboCtrl) 并更改其垂直和水平尺寸,因为它是自定义控件。我在 Windows 7 64 位机器上使用 wxPython 演示对此进行了测试。
I don't think the wx.ComboBox will allow the vertical size to be set if the native widget doesn't accept that argument. Remember, wxPython wraps the native widgets of the platform and must conform to those widget's limitations.
On the other hand, you CAN use the ComboCtrl (wx.combo.ComboCtrl) and change both its vertical and horizontal sizes because it is is a custom control. I tested this using the wxPython demo on my Windows 7 64-bit box.