当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


wxPython wx.ToolBar InsertSeparator()用法及代码示例


在本文中,我们将学习与wxPython的wx.ToolBar类关联的InsertSeparator()函数。 InsertSeparator()函数只是将分隔符插入到工具栏的给定位置。请注意,您必须致电Realize才能进行更改。它仅使用pos作为参数。

用法:
wx.ToolBar.InsertSeparator(self, pos)

参数:

参数 输入类型 描述
pos int 从0开始插入分隔符的位置。

返回类型:

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() 
        td = self.toolbar.AddTool(1, '', wx.Bitmap('sep.png')) 
        te = self.toolbar.AddTool(2, '', wx.Bitmap('right.png')) 
        tf = self.toolbar.AddTool(3, '', wx.Bitmap('wrong.png')) 
  
        self.toolbar.Realize() 
        self.Bind(wx.EVT_TOOL, self.OnOne, td) 
  
        self.SetSize((350, 250)) 
        self.SetTitle('Undo redo') 
        self.Centre() 
  
    def OnOne(self, e):
        # insert separator b / w tick and cross tool 
        self.toolbar.InsertSeparator( pos = 2) 
        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() 
        td = self.toolbar.AddTool(1, '', wx.Bitmap('sep.png')) 
        te = self.toolbar.AddTool(2, '', wx.Bitmap('right.png')) 
        tf = self.toolbar.AddTool(3, '', wx.Bitmap('wrong.png')) 
  
        self.toolbar.Realize() 
        self.Bind(wx.EVT_TOOL, self.OnOne, td) 
  
        self.SetSize((350, 250)) 
        self.SetTitle('Undo redo') 
        self.Centre() 
  
    def OnOne(self, e):
        for i in range(5):
            # insert 5 separator tick and cross tool 
            self.toolbar.InsertSeparator( pos = 2) 
            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()

输出:
在单击单独的图标之前:

单击单独的图标后:




相关用法


注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 wxPython | InsertSeparator() function in wx.ToolBar。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。