wxPython wxPython中的EnableTool()函数
在这篇文章中,我们将学习wxPython的wx.ToolBar类的EnableTool()函数。它是wx.Toolbar类中另一个重要的函数。EnableTool()函数用于启用或禁用工具栏中的一个特定工具。它需要一个’enable’bool参数,当它为真时,启用该工具,当它为假时,禁用它。
语法。
wx.toolbar.EnableTool(self, ttolid, enable)
参数:
参数 | 输入类型 | 描述 |
---|---|---|
ttolid | int | 一个整数,在随后的操作中可以通过它来识别该工具。 |
enable | bool | 如果为真,则启用该工具,否则禁用该工具。 |
代码示例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()
# 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()
# disable tool in toolbar
self.toolbar.EnableTool(13, False)
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出窗口:
代码示例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('user.png'), shortHelp ="Simple Tool2")
stool = self.toolbar.AddTool(14, 'twoTool', wx.Bitmap('right.png'), shortHelp ="Simple Tool2")
self.toolbar.Realize()
self.SetSize((350, 250))
self.SetTitle('Control')
self.Centre()
# disable tool in toolbar
self.toolbar.EnableTool(13, False)
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出窗口: