wxPython | wx.ToolBar 中的 SetDropdownMenu()函数
在本文中,我们将学习与 wxPython 的 wx.ToolBar 类关联的 SetDropdownMenu()函数。 SetDropdownMenu()函数设置由其 id 给出的工具的下拉菜单。该工具本身会在不再需要时删除菜单。仅在 GTK+ 和 MSW 下支持。如果您在程序中定义了 EVT_TOOL_DROPDOWN() 处理程序,则必须从中调用 wx.Event.Skip 否则菜单将不会显示。
Syntax:
Parameters:
Parameter | Input Type | Description |
---|---|---|
id | int | ID of the tool in question, as passed to AddTool . |
menu | wx.Menu | Menu to set with particular tool. |
Return Type:
代码示例 1:
wx.ToolBar.SetDropdownMenu()
输出 :
代码示例 2:
bool
输出:
点击勾选工具之前:
点击勾选工具后: