The wxPython Guide笔记1

1    app = wx.App()
    每个wxpyhon的程式都必须有一个application object

2    wxFrame
    (1)wx.Frame widget 是一个最重要的容器 是其他widget的parent widget
    (2)Frame有7个参数
        wx.Frame(wx.Window parent, int id=-1, string title='', wx.Point pos = wx.DefaultPosition,
            wx.Size size = wx.DefaultSize, style = wx.DEFAULT_FRAME_STYLE, string name = "frame")
    (3)第一个参数没有默认值 前三个是必须的 其他的可选
    (4)style这个参数可以是多个的集合写法如下
        window = wx.Frame(None, style=wx.MAXIMIZE_BOX | wx.RESIZE_BORDER
            | wx.SYSTEM_MENU | wx.CAPTION |     wx.CLOSE_BOX)
        默认的是wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER | wxSYSTEM_MENU | wxCAPTION | wxCLOSE_BOX | wxCLIP_CHILDREN.
    (5)可以使用wxWindow的方法Move等
                    Method                                                                                    Description
        Move(wx.Point point)                                                move a window to the given position
        MoveXY(int x, int y)                                                    move a window to the given position
        SetPosition(wx.Point point)                                    set the position of a window
        SetDimensions(wx.Point point, wx.Size size)    set the position and the size of a window
    (6)可以使用wxWindow和wxTopLevelWindow的一些方法来修改Frame的默认位置大小等
        比如让窗口最大化 在中间显示 调用Centere()和Maximize()方法即可
python 代码
  1. import wx  
  2.   
  3. class Centre(wx.Frame):  
  4.     def __init__(self, parent, id, title):  
  5.     wx.Frame.__init__(self, parent, id, title)  
  6.   
  7.     self.Centre()  
  8.     self.Maximize()  
  9.     self.Show(True)  
  10.   
  11. app = wx.App()  
  12. Centre(None, -1, 'Centre')  
  13. app.MainLoop() 
  14.  


3   一个带有事件处理的简单例子
   
python 代码
 
  1. #!/usr/bin/python  
  2.   
  3. # communicate.py  
  4.   
  5. import wx  
  6.   
  7. #左边的面板  继承自wxPanel  
  8. class LeftPanel(wx.Panel):  
  9.     def __init__(self, parent, id):  
  10. #初始化面板  
  11.     wx.Panel.__init__(self, parent, id, style=wx.BORDER_SUNKEN)  
  12. #左边的文本区等于右边的文本区 所以构造的时候要先构造右边的Panel  
  13. #这个地方是找到一个static text widget  
  14. #直接指到RightPanel中的wx.StaticText(self, -1, '0', (40, 60))  
  15.     self.text = parent.GetParent().rightPanel.text  
  16. #添加两个按钮 一个加号(加法操作)一个减号(减法操作)  
  17.     button1 = wx.Button(self, -1, '+', (10, 10))  
  18.     button2 = wx.Button(self, -1, '-', (10, 60))  
  19. #和自定义的事件处理绑定  
  20.     self.Bind(wx.EVT_BUTTON, self.OnPlus, id=button1.GetId())  
  21.     self.Bind(wx.EVT_BUTTON, self.OnMinus, id=button2.GetId())  
  22. #加法函数  
  23.     def OnPlus(self, event):  
  24.     value = int(self.text.GetLabel())  
  25.     value = value + 1  
  26.     self.text.SetLabel(str(value))  
  27. #减法函数  
  28.     def OnMinus(self, event):  
  29.     value = int(self.text.GetLabel())  
  30.     value = value - 1  
  31.     self.text.SetLabel(str(value))  
  32.   
  33. #右边的面板  继承自wxPanel  
  34. class RightPanel(wx.Panel):  
  35.     def __init__(self, parent, id):  
  36.     wx.Panel.__init__(self, parent, id, style=wx.BORDER_SUNKEN)  
  37. #因为LeftPanel也指到这个 所以RightPanel要先初始化  
  38.     self.text = wx.StaticText(self, -1, '0', (40, 60))  
  39.   
  40. #构造一个Frame  
  41. class Communicate(wx.Frame):  
  42.     def __init__(self, parent, id, title):  
  43. #Frame 初始化  
  44.     wx.Frame.__init__(self, parent, id, title, size=(280, 200))  
  45. #为了使得上面LeftPanel的self.text = parent.GetParent().rightPanel.text准确的找到  
  46. #让两个panel继承自同一个父panel  
  47.     panel = wx.Panel(self, -1)  
  48.     self.rightPanel = RightPanel(panel, -1)  
  49.   
  50.     leftPanel = LeftPanel(panel, -1)  
  51. #定义panel的大小和位置  
  52.     hbox = wx.BoxSizer()  
  53.     hbox.Add(leftPanel, 1, wx.EXPAND | wx.ALL, 5)  
  54.     hbox.Add(self.rightPanel, 1, wx.EXPAND | wx.ALL, 5)  
  55.   
  56.     panel.SetSizer(hbox)   
  57.     self.Centre()  
  58.     self.Show(True)  
  59. #定义wxApp并画出这个窗口  
  60. app = wx.App()  
  61. Communicate(None, -1, 'widgets communicate')  
  62. app.MainLoop()  

你可能感兴趣的:(python,wxPython)