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


wxPython GetToolByPos()用法及代码示例


在本文中,我们将学习wxPython的wx.ToolBar类中存在的GetToolByPos()函数。 GetToolByPos()函数用于简单地将指针返回到特定位置的工具。
GetToolByPos()函数采用单个参数pos(刀具位置)。

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

参数:

参数 输入类型 描述
pos int 刀具位置从0开始。

Return Type:

wx.ToolBarToolBase

代码示例1:



import wx 
  
  
class Example(wx.Frame):
    global count 
    count = 0; 
  
    def __init__(self, *args, **kwargs):
        super(Example, self).__init__(*args, **kwargs) 
  
        self.InitUI() 
  
    def InitUI(self):
        self.locale = wx.Locale(wx.LANGUAGE_ENGLISH) 
        pnl = wx.Panel(self) 
        self.toolbar = self.CreateToolBar() 
        self.toolbar.SetMargins(10, 10) 
        # Add Tools Using AddTool function 
        rtool = self.toolbar.AddTool(13, 'Toolone', wx.Bitmap('wrong.png'), shortHelp ="Simple Tool2") 
        stool = self.toolbar.AddTool(14, 'Tooltwo', wx.Bitmap('wrong.png'), shortHelp ="Simple Tool") 
  
        self.toolbar.Realize() 
        self.SetSize((350, 250)) 
        self.SetTitle('Control') 
        self.Centre() 
  
        obj = self.toolbar.GetToolByPos(1) 
  
        # print tool label 
        print(obj.GetLabel()) 
  
  
def main():
    app = wx.App() 
    ex = Example(None) 
    ex.Show() 
    app.MainLoop() 
  
  
if __name__ == '__main__':
    main()

输出:

Tooltwo

代码示例2:

import wx 
  
  
class Example(wx.Frame):
    global count 
    count = 0; 
  
    def __init__(self, *args, **kwargs):
        super(Example, self).__init__(*args, **kwargs) 
  
        self.InitUI() 
  
    def InitUI(self):
        self.locale = wx.Locale(wx.LANGUAGE_ENGLISH) 
        pnl = wx.Panel(self) 
        self.toolbar = self.CreateToolBar() 
        self.toolbar.SetMargins(10, 10) 
        # Add Tools Using AddTool function 
        rtool = self.toolbar.AddTool(13, 'Toolone', wx.Bitmap('wrong.png'), shortHelp ="Simple Tool2") 
        stool = self.toolbar.AddTool(14, 'Tooltwo', wx.Bitmap('wrong.png'), shortHelp ="Simple Tool") 
  
        self.toolbar.Realize() 
        self.SetSize((350, 250)) 
        self.SetTitle('Control') 
        self.Centre() 
  
        obj = self.toolbar.GetToolByPos(0) 
  
        # print tool label 
        print(obj.GetLabel()) 
  
  
def main():
    app = wx.App() 
    ex = Example(None) 
    ex.Show() 
    app.MainLoop() 
  
  
if __name__ == '__main__':
    main()

输出:

Toolone




相关用法


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