wxPython| Python中的 FindById()函数
在本文中,我们将学习一个简单的函数,即 wxPython 的 wx.ToolBar 类中的 FindById()。 FindById 是一个简单的函数,如果没有找到相应的工具,则返回指向由 id 标识的工具的指针或 None。 FindById() 仅采用单个参数,即特定工具的 id。
Syntax :
Parameters :
Parameter | Input Type | Description |
---|---|---|
toolid | int | An integer by which the tool may be identified in subsequent operations. |
Returns :
Return pointer to corresponding tool.
Return Type:
代码示例 1:
wx.ToolBar.FindById(self, id)
输出 :
wx.ToolBarToolBase
代码示例 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()
# Add Tools Using AddTool function
rtool = self.toolbar.AddTool(13, 'twoTool', wx.Bitmap('wrong.png'), shortHelp ="Simple Tool2")
self.toolbar.Realize()
self.SetSize((350, 250))
self.SetTitle('Control')
self.Centre()
# print wx.ToolBarToolBase object o tool
print(self.toolbar.FindById(13))
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出 :