首页 > 其他 > 详细

给框架增加菜单栏,工具栏

时间:2017-09-13 00:10:30      阅读:754      评论:0      收藏:0      [点我收藏+]

这段代码运行正常了但是有一个警告:大意是说要用AddTool()替换掉AddSimpleTool

试过多次都出错了,有没有人知道啊?

import wx
#import images
import wx.py.images as images
class ToolbarFrames(wx.Frame):
    def __init__(self,parent,id):
        wx.Frame.__init__(self,parent,id,"我的程序",size=(300,200))
        panel = wx.Panel(self)  # 创建画板
        panel.SetBackgroundColour("withe")
        statusBar=self.CreateStatusBar()#创建状态栏
        toolsBar=self.CreateToolBar()#创建工具栏
        toolsBar.AddSimpleTool(wx.NewId(),images.getPyBitmap(),"New","Long help for ‘new‘")#给工具栏增加一个工具
        toolsBar.Realize()
        MenuBar=wx.MenuBar()
        menu1=wx.Menu()
        MenuBar.Append(menu1,"&File")
        menu2 = wx.Menu()
        menu2.Append(wx.NewId(),"&Copy","Copy in status bar")
        menu2.Append(wx.NewId(),"C&ut","")
        menu2.Append(wx.NewId(), "Paste", "")
        menu2.AppendSeparator()
        menu2.Append(wx.NewId()," & Options...","Display Options")
        MenuBar.Append(menu2," & Edit") #  在菜单栏上附上菜单
        self.SetMenuBar(MenuBar) #  在框架上附上菜单栏
if __name__== ‘__main__‘:
    app = wx.App(False)
    frame=ToolbarFrames(parent=None, id=-1)
    frame.Show()
    app.MainLoop()

  警告原文:

wxPyDeprecationWarning: Call to deprecated item. Use :meth:`AddTool` instead.
toolsBar.AddSimpleTool(wx.NewId(),images.getPyBitmap(),"New","Long help for ‘new‘")#给工具栏增加一个工具

 

知道的麻烦留言告知,多谢了。

给框架增加菜单栏,工具栏

原文:http://www.cnblogs.com/chengyonggao/p/7512727.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!