📜  Python – wxPython 中的 CreateToolBar()

📅  最后修改于: 2022-05-13 01:55:34.289000             🧑  作者: Mango

Python – wxPython 中的 CreateToolBar()

在本文中,我们将学习如何在框架中添加工具栏。 gui 应用程序中的工具栏提供对各种重要工具的快速访问。我们可以使用 wxPython 的 wx.Frame 类中的 CreateToolBar()函数来创建工具栏。

代码示例:

import wx
  
  
class Example(wx.Frame):
  
    def __init__(self, *args, **kwargs):
        super(Example, self).__init__(*args, **kwargs)
  
        self.InitUI()
  
    def InitUI(self):
  
        # create toolbar using CreateToolBar function
        toolbar = self.CreateToolBar()
        qtool = toolbar.AddTool(wx.ID_ANY, 'Welcome', wx.Bitmap('/Desktop/wxPython/images.png'))
        toolbar.Realize()
  
        self.SetSize((600, 400))
        self.SetTitle('Simple toolbar')
        self.Centre()
  
    def OnQuit(self, e):
        self.Close()
  
  
def main():
  
    app = wx.App()
    ex = Example(None)
    ex.Show()
    app.MainLoop()
  
  
if __name__ == '__main__':
    main()

输出 :