wxPython 从框架中隐藏工具条
在这篇文章中,我们将学习如何隐藏框架中的工具条。为了达到这个目的,我们将使用Hide()函数。Hide()函数只是隐藏了工具栏窗口,而不是像Drop()函数那样删除它。被隐藏的工具栏可以用Show()函数再次显示。
语法:wx.ToolBar.Hide(Self)
参数。Hide()函数不需要参数。
返回类型: bool
代码示例。
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)
self.toolbar = self.CreateToolBar()
tool = self.toolbar.AddTool(wx.ID_ANY, 'First',
wx.Bitmap('right.png'))
self.toolbar.Realize()
# panel for button
self.pnl = wx.Panel(self)
# button
self.btn = wx.Button(self, label ='Hide Toolbar', pos =(20, 20))
# bind event with button
self.btn.Bind(wx.EVT_BUTTON, self.onclick)
self.SetSize((350, 250))
self.SetTitle('Simple toolbar')
self.Centre()
def onclick(self, e):
# hide toolbar
self.toolbar.Hide()
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出窗口:
点击按钮前
点击按钮后