更新gtk中的表
我的窗口在屏幕上包含一个表格,现在我想将一个小部件附加到该表格,我使用的
gtk_table_attach(GTK_TABLE(table), label, ...)
功能是正确的,它运行时没有任何错误
,但表格不响应该行我的意思是我的表格上没有任何变化,我想我需要一些东西来告诉该表自行更新,但是如何呢?
note= 该行位于信号的回调内,我确信信号运行
note2= 我不想销毁该窗口
note3= 我使用 gtk+ 和 pygtk
note4= 我确信我将该小部件附加到正确的位置(它是免费的)
I have window that contains a table on screen, now I want to attach a widget to that table I use
gtk_table_attach(GTK_TABLE(table), label, ...)
the function is correct and it runs without any error
but table does not respond to that line I mean there is no change on my table, I think I need something to tell that table update it self but how?
note= that line is inside a callback of a signal and I am sure that signal runs
note2= I do not want to destroy window for that
note3= I use gtk+ and pygtk
note4= I am sure I attach that widget to a correct position ( it is free)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否先在
label
上调用了gtk_widget_show()
?Did you call
gtk_widget_show()
onlabel
first?