wxPython wx.ToolBar中的SetToolShortHelp()函数

wxPython wx.ToolBar中的SetToolShortHelp()函数

在这篇文章中,我们将学习与wxPython的wx.ToolBar类相关的SetToolShortHelp()函数。SetToolShortHelp()简单地设置了给定工具的简短帮助。

它需要两个参数,即toolId和helpString(新的简短帮助字符串)。

语法。

wx.ToolBar.SetToolShortHelp(self, toolId, helpString)

参数。

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

代码示例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()

输出:

wxPython - wx.ToolBar中的SetToolShortHelp()函数

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

wxPython 教程