使用 wxThread 在 wxListCtrl 中填充高数据-我可以但是
我想在wxListCtrl中填充数据库表,我可以做到这一点,我为此使用wxThread。我的问题是 - 我的概念适用于少量数据,当我增加大小时,它显示一个错误,例如 -
showingdatainwxlistctrl: ../../src/XlibInt.c:595: _XPrivSyncFunction: Assertion `dpy->synchandler == _XPrivSyncFunction' failed.
我的代码如下所示: -
void *MyThread :: Entry()
{
int i=1,j,k=0 ;
while(i!=400)
{
long index=this->temp->data_list_control->InsertItem(i,wxT("amit"));
for(j=1;j<3;j++)
{
this->temp->data_list_control->SetItem(index,j,wxT("pathak"));
}
k++;
if(k==30)
{
this->Sleep(1000);
k=0;
}
i++;
}
}
如果我使用 i =4, 10 100,它正在工作,但我越过了限制(我不知道在哪一点)它开始显示错误 如果您有任何建议,请帮助我...
i want to fill database table in wxListCtrl, i can do this , i m using wxThread for this. my problem is - my concept is working for small amount of data, when i increase the size, it shows a error like-
showingdatainwxlistctrl: ../../src/XlibInt.c:595: _XPrivSyncFunction: Assertion `dpy->synchandler == _XPrivSyncFunction' failed.
my code is given below:-
void *MyThread :: Entry()
{
int i=1,j,k=0 ;
while(i!=400)
{
long index=this->temp->data_list_control->InsertItem(i,wxT("amit"));
for(j=1;j<3;j++)
{
this->temp->data_list_control->SetItem(index,j,wxT("pathak"));
}
k++;
if(k==30)
{
this->Sleep(1000);
k=0;
}
i++;
}
}
if i used i =4, 10 100, it is working but i crossed the limit( i dont know at which point) it start showing error
if you have any suggestion then pls help me...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要将事件发布到主线程并在事件处理程序中添加项目,而不是从工作线程直接调用 SetItem。列表控件事件的数据应放置到自定义事件类中。请参阅 wxPostEvent 函数和此处的详细信息: http://wiki.wxwidgets.org/Custom_Events
Instead of direct SetItem call from the worker thread, you need to post event to the main thread and add item in the event handler. Data for list control event should be placed to custom event class. See details in wxPostEvent function and here: http://wiki.wxwidgets.org/Custom_Events
您正在从另一个线程访问非线程安全的 wxListCtrl,这根本不起作用。
更好的解决方案可能是跳过线程,使用 wxTimer,然后每次调用 OnTimer 时再填充 400 个条目。
You're accessing a non-threadsafe wxListCtrl from another thread, this will simply not work.
A better solution may be to skip the thread, use a wxTimer, then fill 400 more entries every time OnTimer is called.