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


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


在本文中,我们将学习与wxPython的wx.ToolBar类关联的InsertTool()函数。 InsertTool()函数是将工具插入特定位置的新样式。 InsertTool()将与工具关联的参数作为其参数。

用法: wx.ToolBar.InsertTool (self, pos, toolId, label, bitmap, bmpDisabled=NullBitmap, kind=ITEM_NORMAL, shortHelp=””, longHelp=””, clientData=None)

参数:

参数 输入类型 描述
pos int 从0开始添加工具的位置。
toolid int 一个整数,可以在随后的操作中标识该工具。
label string 该工具将显示的字符串。
bitmap wx.bitmap 主要工具位图。
bmpDisabled wx.bitmap 禁用工具时使用的位图。
kind int 一种工具栏。
shortHelp string 此字符串用于工具工具提示。
longHelp string 与工具关联的详细字符串。
clientData PyUserData 客户端数据的可选指针,以后可以使用GetToolClientData检索。

返回类型:
wx.ToolBarToolBase

代码示例:

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')) 
  
        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 tool with id = 2 
        self.toolbar.InsertTool(pos = 1, toolId = 2, label ='wrong', 
                                   bitmap = wx.Bitmap('wrong.png')) 
        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()

输出:
在单击单独的工具之前:

单击单独的工具后:

代码示例:

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')) 
  
        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 two tools in one go 
        self.toolbar.InsertTool(pos = 3, toolId = 2, label ='wrong',  
                                   bitmap = wx.Bitmap('wrong.png')) 
        self.toolbar.InsertTool(pos = 4, toolId = 3, label ='right',  
                                    bitmap = wx.Bitmap('right.png')) 
        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 – InsertTool() function in wx.ToolBar。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。