2009年10月14日 星期三

試用 wxPython

wxPython 比較簡單,一段代碼便開了個視窗。中文也沒有問題。












# -*- coding: cp950 -*-
import wx

class Dockable(wx.Frame):
def __init__(self, parent, id, title):
wx.Frame.__init__(self, parent, id, title)

menubar = wx.MenuBar(wx.MB_DOCKABLE)
file = wx.Menu()
edit = wx.Menu()
view = wx.Menu()
insr = wx.Menu()
form = wx.Menu()
tool = wx.Menu()
help = wx.Menu()

menubar.Append(file, '&檔案')
menubar.Append(edit, '&編輯')
menubar.Append(view, '&檢視')
menubar.Append(insr, '&插入')
menubar.Append(form, '&格式')
menubar.Append(tool, '&工具')
menubar.Append(help, '&幫助')
self.SetMenuBar(menubar)

self.Centre()
self.Show(True)

app = wx.App()
Dockable(None, -1, 'Dockable menubar')
app.MainLoop()

  

沒有留言: