wxPython In Action的读书笔记

Chap 1 Welcome to wxPython 一个20行的wxPython程序: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 #!/bin/env python import wx class MyFrame(wx.Frame): def __init__(self): wx.Frame.__init__(self,None,-1,"My Frame",size=(300,300)) panel = wx.Panel(self,-1) panel.Bind(wx.EVT_MOTION,self.OnMove) wx.StaticText(panel,-1,"Pos",pos=(10,12)) self.posCtrl = wx.TextCtrl(panel,-1,"",pos=(40,10)) def OnMove(self,event): pos = event.GetPosition() self.posCtrl.SetValue("%s,%s" % (pos.x,pos.y)) if __name__ ==

实现服务端功能之——服务

Slug: bus_svc_overview 面向服务的架构预览 服务的概念已经出现了很长时间,但面向服务的概念相对是比较新的。面向服务的架构是一种有助于降低应用耦合的一种构建应用的风