更新gtk中的表

发布于 2024-09-02 04:11:32 字数 333 浏览 3 评论 0原文

我的窗口在屏幕上包含一个表格,现在我想将一个小部件附加到该表格,我使用的

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无力看清 2024-09-09 04:11:32

您是否先在 label 上调用了 gtk_widget_show()

Did you call gtk_widget_show() on label first?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文