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


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


在本文中,我们将学习与wxPython的wx.ToolBar类关联的SetToolShortHelp()函数。 SetToolShortHelp()只需设置给定工具的简短帮助。
它带有两个参数,分别是toolId和helpString(新的简短帮助字符串)。

用法:
wx.ToolBar.SetToolShortHelp(self, toolId, helpString)

参数:

参数 输入类型 描述
toolId int 有问题的工具的ID,传递给AddTool。
helpString string 简短帮助的字符串。

代码示例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, 'right', wx.Bitmap('right.png')) 
        te = self.toolbar.AddTool(2, 'wrong', wx.Bitmap('wrong.png')) 
  
        # set separation of toolbar to 20 
        self.toolbar.SetToolShortHelp(toolId = 1, helpString ="new short help") 
  
        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):
        print(self.toolbar.GetToolSeparation()) 
        # Realize() called to finalize new added tools 
        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 – SetToolShortHelp() function in wx.ToolBar。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。