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


wxPython InsertSimpleTool()用法及代码示例


在本文中,我们将学习与wxPython的wx.ToolBar类关联的InsertSimpleTool()函数。 InsertSimpleTool()函数是在工具栏中插入工具的另一种旧方法。 InsertSimpleTool()函数将具有指定属性的工具插入到给定位置的工具栏中。

用法:
wx.ToolBar.InsertSimplTool(self, pos, toolId, bitmap, shortHelpString="", longHelpString="", isToggle=0)

参数:

参数 输入类型 描述
pos int 从0开始要添加的工具的位置。
toolid int 一个整数,可以在随后的操作中标识该工具。
bitmap wx.bitmap 主要工具位图。
shortHelpString string 此字符串用于工具工具提示。
longHelpString string 与工具关联的详细字符串。
isToggle int 正常为0,切换按钮为1。

Retun Type:

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('user.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 at position 1 
        self.toolbar.InsertSimpleTool(pos = 1, toolId = 2, bitmap = wx.Bitmap('right.png'), shortHelpString ="new tool one", isToggle = 0) 
        # insert tool at position 2 
        self.toolbar.InsertSimpleTool(pos = 2, toolId = 3, bitmap = wx.Bitmap('wrong.png'), shortHelpString ="new tool two", isToggle = 0) 
        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 | InsertSimpleTool() function in python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。