[wxPython] 用TextCtrl来显示文本内容


               
a=open('foo.txt','r')
         b=a.read()
         self.control = wx.TextCtrl(self, 1, size=(800, 500), style=wx.TE_MULTILINE)
         self.control.SetValue(str(b))