import wx
import time
class test(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, None)
self.panel = wx.Panel(self, wx.ID_ANY)
self.tc = wx.TextCtrl(self.panel, wx.ID_ANY, size=(300,400),
style = wx.TE_MULTILINE|wx.TE_READONLY|wx.VSCROLL)
text=""
start = time.time()
for i in range(1,30000):
text+=str(i)+'\n'
# self.tc.AppendText(str(i)+"\n")
self.tc.WriteText(text)
self.Show()
end = time.time()
print (end - start)
if __name__ == '__main__':
app = wx.App()
frame = test()
app.MainLoop()
在这里,我正在建造
text
WriteText
.
如果你注释掉
text=text+str(i)+'\n'
和
self.tc.WriteText(text)
行并取消注释
self.tc.AppendText(str(i)+"\n")