在本文中,我们将学习与wxPython的wx.ToolBar类关联的InsertControl()函数。 InsertControl()将控件插入到给定位置的工具栏中。请注意,您必须致电Realize才能进行更改。
用法:
wx.ToolBar.InsertControl(self, pos, control, label="")
参数:
参数 | 输入类型 | 描述 |
---|---|---|
pos | int | 从0开始定位插入控件的位置。 |
control | wx.Control | 控制要插入的内容。 |
label | string | 要在控件上显示的标签。 |
返回类型:
wx.ToolBarToolBase
代码示例1:单击工具栏上的刻度工具后,将插入一个控件。
import wx
class Example(wx.Frame):
def __init__(self, *args, **kwargs):
super(Example, self).__init__(*args, **kwargs)
self.InitUI()
def InitUI(self):
self.locale = wx.Locale(wx.LANGUAGE_ENGLISH)
self.toolbar = self.CreateToolBar()
tundo = self.toolbar.AddTool(1, '', wx.Bitmap('right.png'))
tredo = self.toolbar.AddTool(2, '', wx.Bitmap('wrong.png'))
self.toolbar.Realize()
self.Bind(wx.EVT_TOOL, self.OnOne, tundo)
self.SetSize((350, 250))
self.SetTitle('Undo redo')
self.Centre()
def OnOne(self, e):
ctrl = wx.Control(self.toolbar, id = 1, size =(100, -1),
style = 0, name ="control")
# insert control in toolbar at position 2
self.toolbar.InsertControl(pos = 2, control = ctrl, label ="Control")
self.toolbar.Realize()
def OnQuit(self, e):
self.Close()
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出:
在点击勾号之前:
单击刻度后:
代码示例2:单击工具栏上的刻度工具后,将插入一个控件。
import wx
class Example(wx.Frame):
def __init__(self, *args, **kwargs):
super(Example, self).__init__(*args, **kwargs)
self.InitUI()
def InitUI(self):
self.locale = wx.Locale(wx.LANGUAGE_ENGLISH)
self.toolbar = self.CreateToolBar()
tundo = self.toolbar.AddTool(1, '', wx.Bitmap('right.png'))
tredo = self.toolbar.AddTool(2, '', wx.Bitmap('wrong.png'))
self.toolbar.Realize()
self.Bind(wx.EVT_TOOL, self.OnOne, tundo)
self.SetSize((350, 250))
self.SetTitle('Undo redo')
self.Centre()
def OnOne(self, e):
ctrl = wx.Control(self.toolbar, id = 1, size =(100, -1),
style = 0, name ="control")
# insert control in toolbar at position 2
self.toolbar.InsertControl(pos = 0, control = ctrl, label ="Control")
self.toolbar.Realize()
def OnQuit(self, e):
self.Close()
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出:
在点击勾号之前:
单击刻度后:
相关用法
- wxPython wx.StaticText GetLabel()用法及代码示例
- wxPython FindToolForPosition()用法及代码示例
- wxPython wx.ToolBar GetToolState()用法及代码示例
- wxPython wx.StaticText SetBackgroundColour()用法及代码示例
- wxPython GetToolEnabled()用法及代码示例
- wxPython wx.StaticText SetForegroundColour()用法及代码示例
- wxPython FindControl()用法及代码示例
- wxPython GetToolBitmapSize()用法及代码示例
- wxPython GetToolByPos()用法及代码示例
注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 wxPython | InsertControl() function in wx.ToolBar。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。