wxPython – wx.ToolBar 中的 AddLabelTool()函数
在本文中,我们将学习 wxPython 的 wx.ToolBar 类中的另一个方法,即 AddLabelTool() 方法。 AddLabelTool() 是向工具栏添加工具的旧式方法。
Syntax: wx.ToolBar.AddLabelTool(self, id, label, bitmap, bmpDisabled=wx.NullBitmap, kind=wx.ITEM_NORMAL, shortHelp=””, longHelp=””, clientData=None)
Parameters :
Parameter | Input Type | Description |
---|---|---|
toolid | int | An integer by which the tool may be identified in subsequent operations. |
label | string | The string to be displayed with the tool. |
bitmap | wx.bitmap | The primary tool bitmap. |
bmpDisabled | wx.bitmap | The bitmap used when the tool is disabled. |
kind | int | kind of toolbar. |
shortHelp | string | This string is used for the tools tooltip. |
longHelp | string | detailed string associated with tool. |
clientData | PyUserData | An optional pointer to client data which can be retrieved later using GetToolClientData. |
代码示例:
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):
pnl = wx.Panel(self)
self.toolbar = self.CreateToolBar()
# add tool using AddLabelTool() method
qtool = self.toolbar.AddLabelTool(12, 'Quit',
wx.Bitmap('/Desktop/wxPython/right.png'),
kind = wx.ITEM_NORMAL,
shortHelp ="AddLabelTool")
self.toolbar.Realize()
self.SetSize((350, 250))
self.SetTitle('Control')
self.Centre()
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出 :