wxPython | wx.ToolBar 中的 InsertControl()函数
在本文中,我们将学习与 wxPython 的 wx.ToolBar 类关联的 InsertControl()函数。 InsertControl() 将控件插入到工具栏的给定位置。请注意,您必须调用 Realize 才能进行更改。
Syntax :
Parameters:
Parameter | Input Type | Description |
---|---|---|
pos | int | Position where to insert control starting from 0. |
control | wx.Control | Control which you want to insert. |
label | string | Label to be shown on control. |
Return Type:
代码示例 1:单击工具栏上的刻度工具时,会插入一个控件。
wx.ToolBar.InsertControl(self, pos, control, label="")
输出 :
点击勾选之前:
点击勾选后:
代码示例 2:单击工具栏上的刻度工具时,插入了一个控件。
wx.ToolBarToolBase
输出 :
点击勾选之前:
点击勾选后: