COMBOBOX 的垂直大小不适合 wxpython

发布于 2024-12-29 21:35:22 字数 285 浏览 0 评论 0原文

我想知道是否有一种方法可以垂直调整组合框的大小,

这不起作用

    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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你列表最软的妹 2025-01-05 21:35:22

如果本机小部件不接受该参数,我认为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文