0

这个问题我很困扰:

我创建了一个ListCtrl对象、一个TextCtrl对象和一个按钮。首先我将一些数据填充到ListCtrl对象中,当我按下按钮时,它会将一些字符串附加到TextCtrl对象中并用于SetStringItem修改ListCtrl对象。

正如您在按钮功能中看到的那样,我time.sleep(2)在每个循环中都添加了。当我得到的是按下按钮时,TextCtrl每次插入字符串时都会刷新,但是ListCtrl只是冻结直到循环完成,然后它将显示正确的字符串。

我想知道如何在ListCtrl调用后立即刷新对象SetStringItem

任何帮助都深表感谢。

这是代码:

import wx                                                                                                       
import sys                                                                                      
import time                                                                                     

class Frame(wx.Frame):                                                                          
    def __init__(self, parent):                                                                 
        wx.Frame.__init__(self, parent, size=(450, 450))                                        
        self.panel = wx.Panel(self)                                                             
        self.dl = wx.ListCtrl(self,-1,size=(300,100),style=wx.LC_REPORT)                        

        self.dl.InsertColumn(0, 'File')                                                         
        self.dl.InsertColumn(1, 'Progress')                                                     
        self.dl.InsertColumn(2, 'State')                                                        

        for row in range(3):                                                                    
            labels = [l+str(row) for l in "FILE PERCENT STATE".split()]                         
            # sys.maxint inserts at the end of the list                                         
            index = self.dl.InsertStringItem(sys.maxint, labels[0])                             
            self.dl.SetStringItem(index, 1, labels[1])                                          
            self.dl.SetStringItem(index, 2, labels[2])                                          

        self.Show(True)                                                                         

        button2 = wx.Button(self, label=u"test", pos=(15, 200), size=(60, 25))                  
        self.Bind(wx.EVT_BUTTON, self.test, button2)                                            
        self.text = wx.TextCtrl(self, -1, pos=(80, 200), size=(200, 175), style=wx.TE_MULTILINE)
    def test(self,event):                                                                       
        for i in range(3):                                                                                                                                          
            self.dl.SetStringItem(i,1,"HELLO")                                                                                                            
            self.text.AppendText("HELLO")                                                       
            time.sleep(2)                                                                       

app = wx.App()                                                                                  
Frame(None)                                                                                     
app.MainLoop()                                                                                                                                        
4

2 回答 2

1

我已经把我的代码改成了这个,它可以工作,谢谢史蒂夫

import wx
import sys
import time


class Frame(wx.Frame):
    def __init__(self, parent):
        wx.Frame.__init__(self, parent, size=(450, 450))
        self.panel = wx.Panel(self)
        self.dl = wx.ListCtrl(self,-1,size=(300,100),style=wx.LC_REPORT)

        self.dl.InsertColumn(0, 'File')
        self.dl.InsertColumn(1, 'Progress')
        self.dl.InsertColumn(2, 'State')

        for row in range(3):
            labels = [l+str(row) for l in "FILE PERCENT STATE".split()]
            # sys.maxint inserts at the end of the list
            index = self.dl.InsertStringItem(sys.maxint, labels[0])
            self.dl.SetStringItem(index, 1, labels[1])
            self.dl.SetStringItem(index, 2, labels[2])

        self.Show(True)

        self.timer = wx.Timer(self,-1)
        #self.Bind(wx.EVT_TIMER, self.OnTimer, self.timer)
        self.Bind(wx.EVT_TIMER, self.test1, self.timer)
        button2 = wx.Button(self, label=u"test", pos=(15, 200), size=(60, 25))
        self.Bind(wx.EVT_BUTTON, self.test, button2)
        self.text = wx.TextCtrl(self, -1, pos=(80, 200), size=(200, 175), style=wx.TE_MULTILINE)
        self.z=0



    def test(self,event):
        self.timer.Start(3000)

    def test1(self,event):
        for i in range(1):
            self.dl.SetStringItem(self.z,1,"HELLO")
            self.text.AppendText("HELLO")
            self.z+=1           
            if self.z >2 :
               self.timer.Stop()  


app = wx.App()
Frame(None)
app.MainLoop()
于 2013-08-27T01:58:40.200 回答
1

问题是 time.sleep 会阻止您的 GUI,您需要做的是获得您想要的效果:

在您的按钮上按下添加第一项并使用事件处理程序启动 2 秒 wx.Timer/

在事件处理程序中添加下一个字符串,或者如果没有更多添加取消计时器。

于 2013-08-22T10:40:10.137 回答