如何在使用setstringitem函数时同时刷新listctrl

时间:2013-08-22 03:21:31

标签: python wxpython wxwidgets listctrl

我对这个问题感到很困扰:

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

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

我想知道在调用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()                                                                                                                                        

2 个答案:

答案 0 :(得分:1)

问题是time.sleep会阻止你的GUI,你需要做些什么来获得你想要的效果:

在按钮上按下添加第一项&amp;使用事件处理程序/

启动2秒wx.Timer

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

答案 1 :(得分: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()