文章列表
# -*- coding: gbk -*-
import wx
class MyFrame(wx.Frame):
def __init__(self):
wx.Frame.__init__(self,parent=None,id=-1,title="python你好",size=(600,500))
self.panel = wx.Panel(self)
self.button = wx.Button(self.panel,label="确定退出",pos=(200,100), ...
- 2009-08-23 20:36
- 浏览 2504
- 评论(0)