posted on 2010-11-01 15:58 小默 阅读(1074) 评论(3) 编辑 收藏 引用 所属分类: Network
为神马这样了。。。貌似Ctrl+U是正常的。。。好吧,囧。。。 回复 更多评论
1 #!/usr/bin/env python 2 3 import wx 4 5 app = wx.App(False) # Create a new app, don't redirect stdout/stderr to a window 6 frame = wx.Frame(None, wx.ID_ANY, "Hello world") # a frame is a top_level window 7 frame.Show(True) 8 app.MainLoop() 回复 更多评论
1 #!/usr/bin/env python 2 3 import wx 4 class MyFrame(wx.Frame): 5 """We simply derive a new class of Frame""" 6 def __init__(self, parent, title): 7 wx.Frame.__init__(self, parent, title=title, size=(200,100)) 8 self.control = wx.TextCtrl(self, style=wx.TE_MULTILINE) 9 self.Show(True) 10 11 app = wx.App(False) 12 frame = MyFrame(None, 'Small editor') 13 app.MainLoop() 回复 更多评论