wxpython AUI 面板可停靠但不可浮动

发布于 2024-12-05 06:30:01 字数 410 浏览 1 评论 0原文

我在 wxpython 中的可移动面板上遇到了一些不良行为。我在 Mac OS X 10.6.7 上使用适用于 Python 2.7 的 wxpython Cocoa build 2.9.2.3。我正在导入 wx.aui 并尝试创建可停靠面板。

我在一个面板上创建了 wx.aui.AuiManager 并添加了两个面板,一个在顶部,一个在下面。对于他们两个,我都禁用了关闭按钮。现在,可以将面板拖到框架上或框架外的不同可停靠位置,以创建浮动窗口。此窗口显示为 Mac 本机 MiniFrame,并禁用关闭按钮。我不希望用户能够将面板与主框架分开。

我已将 .Floatable(False) 传递给每个窗格的 PaneInfo,但这根本不允许面板移动,即使我传递 .Dockable(True)

我可以在 AUI 中拥有可停靠且可移动的窗格吗?但不能漂浮?

I'm having some undesired behavior with movable panels in wxpython. I'm using the wxpython Cocoa build 2.9.2.3 for Python 2.7 on Mac OS X 10.6.7. I'm importing wx.aui and trying to create dockable panels.

I have a panel that I've created a wx.aui.AuiManager on and have added two panels, one on top and one on below. For both of them I have disabled the close button. Right now, the panels can be dragged into different dockable positions on the frame or off of the frame to create a floating window. This window shows up as the Mac native MiniFrame with a disabled close button. I do not want users to be able to separate the panels from the main frame.

I have passed .Floatable(False) to each pane's PaneInfo, but this won't allow the panels to be moved around at all, even if I pass a .Dockable(True)

Can I have panes in AUI that are dockable and movable, but not floatable?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

随风而去 2024-12-12 06:30:01

我不知道是否有办法做到这一点。这可能是wx.aui的限制。您应该在 wxPython 邮件列表上询问。或者您可以尝试大多数直接替换:wx.agw.aui (http://xoomer.virgilio.it/infinity77/AGW_Docs/aui_module.html#aui)。它修复了默认 wx.aui 中的一堆错误,并且是用纯 Python 编写的。

I don't know if there's a way to do that or not. It may be a limitation of wx.aui. You should ask on the wxPython mailing list. Or you could try the mostly drop-in replacement: wx.agw.aui (http://xoomer.virgilio.it/infinity77/AGW_Docs/aui_module.html#aui). It fixes a bunch of bugs in the default wx.aui and is written in pure Python.

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