如何隐藏工具栏中的元素? wxpython

发布于 2024-12-23 11:20:06 字数 233 浏览 2 评论 0原文

是否可以隐藏(然后显示)工具栏中的元素?

    toolbar = self.CreateToolBar()
    element = toolbar.AddLabelTool(wx.ID_ANY, 'Hi', wx.Bitmap('hello.png'))
    toolbar.Realize()

使用 element.Hide() 返回错误,

感谢您的支持

is it possible to hide (and later show) an element in a toolbar?

    toolbar = self.CreateToolBar()
    element = toolbar.AddLabelTool(wx.ID_ANY, 'Hi', wx.Bitmap('hello.png'))
    toolbar.Realize()

Using element.Hide() returns an error,

Thanks for any support

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

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

发布评论

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

评论(3

远昼 2024-12-30 11:20:06

我不认为 wx.Toolbar 支持隐藏单个项目。然而,FlatMenu 似乎: http://www. wxpython.org/docs/api/wx.lib.agw.flatmenu-module.html 我建议尝试一下。

I don't think the wx.Toolbar supports hiding individual items. However, the FlatMenu seems to: http://www.wxpython.org/docs/api/wx.lib.agw.flatmenu-module.html I would recommend giving that a try.

只是在用心讲痛 2024-12-30 11:20:06

您可以禁用工具:

toolbar = wx.ToolBar(self, -1, style=wx.TB_HORIZONTAL | wx.NO_BORDER)
toolbar.AddSimpleTool(1, wx.Image('stock_new.png', wx.BITMAP_TYPE_PNG).ConvertToBitmap(), 'New', '')
toolbar.EnableTool(1,False)

或者您可以在需要时插入工具

You can disable tool:

toolbar = wx.ToolBar(self, -1, style=wx.TB_HORIZONTAL | wx.NO_BORDER)
toolbar.AddSimpleTool(1, wx.Image('stock_new.png', wx.BITMAP_TYPE_PNG).ConvertToBitmap(), 'New', '')
toolbar.EnableTool(1,False)

or you can just insert tool when you want to do this

哑剧 2024-12-30 11:20:06

可以从工具栏中删除工具。然后可以稍后将它们添加回来。
不幸的是,我找不到简单的隐藏功能。

https://wxpython.org/Phoenix/docs/ html/wx.ToolBar.html#wx.ToolBar.RemoveTool

Tools can be removed from the tool bar. They can then be added back later.
Unfortunately, there is no simple hide function that I can find.

https://wxpython.org/Phoenix/docs/html/wx.ToolBar.html#wx.ToolBar.RemoveTool

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