wxpython将文本实时重定向到textctrl

时间:2013-09-16 03:14:40

标签: wxpython

wxpython如何将文本实时重定向到textctrl

我知道如何重定向文本,但textctrl显示文本直到进程结束,我想实时显示文本

import sys,time
import wx

class RedirectText(object):
    def __init__(self,aWxTextCtrl):
        self.out=aWxTextCtrl

    def write(self,string):
        self.out.WriteText(string)


class MyForm(wx.Frame):

    def __init__(self):
        wx.Frame.__init__(self, None, wx.ID_ANY, "wxPython Redirect Tutorial")

        # Add a panel so it looks the correct on all platforms
        panel = wx.Panel(self, wx.ID_ANY)
        log = wx.TextCtrl(panel, wx.ID_ANY, size=(300,100),
                          style = wx.TE_MULTILINE|wx.TE_READONLY|wx.HSCROLL)
        btn = wx.Button(panel, wx.ID_ANY, 'Push me!')
        self.Bind(wx.EVT_BUTTON, self.onButton, btn)

        # Add widgets to a sizer        
        sizer = wx.BoxSizer(wx.VERTICAL)
        sizer.Add(log, 1, wx.ALL|wx.EXPAND, 5)
        sizer.Add(btn, 0, wx.ALL|wx.CENTER, 5)
        panel.SetSizer(sizer)

        # redirect text here
        redir=RedirectText(log)
        sys.stdout=redir

    def onButton(self, event):        
        print "You pressed the button!"
        time.sleep(5)
        print "======End====="

# Run the program
if __name__ == "__main__":
    app = wx.PySimpleApp()
    frame = MyForm().Show()
    app.MainLoop()

你能给我一个完整的示例代码吗?我需要它。

1 个答案:

答案 0 :(得分:2)

我不确定你在寻找什么。您的代码会按原样实时重定向文本。看起来您已经在使用我的tutorial,它显示了如何重定向stdout。那篇文章应该足以让你在大多数情况下继续前进。

您可能会发现这篇文章很有帮助:

它显示了如何将文本从子进程重定向到文本控件。