在本文中,我们将学习wxPython类wx.ToolBar的EnableTool()函数。 EnableTool用于启用或禁用(使可点击和不可点击)工具栏中存在的工具。
用法:
wx.ToolBar.EnableTool(self, toolid, enable)
参数:
参数 | 输入类型 | 描述 |
---|---|---|
toolid | int | 传递给AddTool的要启用或禁用的工具的ID。 |
enable | bool | 如果为True,则启用该工具,否则禁用它。 |
代码示例:
import wx
class Example(wx.Frame):
def __init__(self, *args, **kwargs):
super(Example, self).__init__(*args, **kwargs)
self.InitUI()
def InitUI(self):
pnl = wx.Panel(self)
self.toolbar = self.CreateToolBar()
qtool = self.toolbar.AddTool(12, 'Quit', wx.Bitmap('/Desktop/wxPython/signs.png'))
self.toolbar.Realize()
self.Bind(wx.EVT_TOOL, self.OnQuit, qtool)
self.SetSize((350, 250))
self.SetTitle('Simple toolbar')
self.Centre()
self.btn = wx.Button(pnl, label ='Disable', pos =(20, 20))
self.btn.Bind(wx.EVT_BUTTON, self.Onclick)
self.SetSize((350, 250))
self.SetTitle('wx.Button')
self.Centre()
def OnQuit(self, e):
self.Close()
def Onclick(self, e):
# disable tool using EnableTool
self.toolbar.EnableTool(12, False)
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出:
相关用法
- wxPython wx.MenuBar SetLabel()用法及代码示例
- wxPython wx.MenuBar GetHelpString()用法及代码示例
- wxPython wx.MenuBar SetHelpString()用法及代码示例
- wxPython wx.MenuBar FindMenuItem()用法及代码示例
- wxPython wx.MenuBar GetMenuLabelText()用法及代码示例
- wxPython wx.MenuBar GetMenuLabel()用法及代码示例
- wxPython wx.MenuBar GetMeuCount()用法及代码示例
- wxPython wx.MenuBar GetLabel()用法及代码示例
注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 wxPython – EnableTool() function in wx.Toolbar。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。