⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 badexample.py

📁 wxPython的基本示例程序
💻 PY
字号:
#!/usr/bin/env pythonimport wxclass RefactorExample(wx.Frame):    def __init__(self, parent, id):        wx.Frame.__init__(self, parent, id, 'Refactor Example',                size=(340, 200))        panel = wx.Panel(self, -1)        panel.SetBackgroundColour("White")        prevButton = wx.Button(panel, -1, "<< PREV", pos=(80, 0))        self.Bind(wx.EVT_BUTTON, self.OnPrev, prevButton)        nextButton = wx.Button(panel, -1, "NEXT >>", pos=(160, 0))        self.Bind(wx.EVT_BUTTON, self.OnNext, nextButton)        self.Bind(wx.EVT_CLOSE, self.OnCloseWindow)        menuBar = wx.MenuBar()        menu1 = wx.Menu()        openMenuItem = menu1.Append(-1, "&Open", "Copy in status bar")        self.Bind(wx.EVT_MENU, self.OnOpen, openMenuItem)        quitMenuItem = menu1.Append(-1, "&Quit", "Quit")        self.Bind(wx.EVT_MENU, self.OnCloseWindow, quitMenuItem)        menuBar.Append(menu1, "&File")        menu2 = wx.Menu()        copyItem = menu2.Append(-1, "&Copy", "Copy")        self.Bind(wx.EVT_MENU, self.OnCopy, copyItem)        cutItem = menu2.Append(-1, "C&ut", "Cut")        self.Bind(wx.EVT_MENU, self.OnCut, cutItem)        pasteItem = menu2.Append(-1, "Paste", "Paste")        self.Bind(wx.EVT_MENU, self.OnPaste, pasteItem)        menuBar.Append(menu2, "&Edit")        self.SetMenuBar(menuBar)        static = wx.StaticText(panel, wx.NewId(), "First Name",                pos=(10, 50))        static.SetBackgroundColour("White")        text = wx.TextCtrl(panel, wx.NewId(), "", size=(100, -1),                pos=(80, 50))        static2 = wx.StaticText(panel, wx.NewId(), "Last Name",                pos=(10, 80))        static2.SetBackgroundColour("White")        text2 = wx.TextCtrl(panel, wx.NewId(), "", size=(100, -1),                pos=(80, 80))        firstButton = wx.Button(panel, -1, "FIRST")        self.Bind(wx.EVT_BUTTON, self.OnFirst, firstButton)        menu2.AppendSeparator()        optItem = menu2.Append(-1, "&Options...", "Display Options")        self.Bind(wx.EVT_MENU, self.OnOptions, optItem)        lastButton = wx.Button(panel, -1, "LAST", pos=(240, 0))        self.Bind(wx.EVT_BUTTON, self.OnLast, lastButton)    # Just grouping the empty event handlers together    def OnPrev(self, event): pass    def OnNext(self, event): pass    def OnLast(self, event): pass    def OnFirst(self, event): pass    def OnOpen(self, event): pass    def OnCopy(self, event): pass    def OnCut(self, event): pass    def OnPaste(self, event): pass    def OnOptions(self, event): pass    def OnCloseWindow(self, event):        self.Destroy()if __name__ == '__main__':    app = wx.PySimpleApp()    frame = RefactorExample(parent=None, id=-1)    frame.Show()    app.MainLoop()

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -