使用 pygtk 更新销毁数据
我正在使用 Glade 和 pygtk,并且有一个带有树视图的窗口,其中有一个按钮可以打开一个对话框,为树视图创建一个新条目。我想在对话框被销毁时更新主窗口中的树视图,但我看不到执行此操作的简单方法。
--编辑--
找到答案,我只需要连接Windows销毁信号
(dialog).window.connect('destroy', self.foo)
I'm using glade and pygtk and I have a window with a treeview with a button that opens a dialog that creates a new entry for the treeview. I want to update the treeview in the main window when the dialog is destroyed but I can't see a simple way to do this.
--Edit--
Found the answer, I just needed to connect the windows destroy signal
(dialog).window.connect('destroy', self.foo)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正确的方法是处理主窗口中对话框的响应:
也许更好的方法是使用 观察者设计模式。当用户按“确定”时,您将保存数据。这会通知树视图已进行更改,从而导致其重新加载。
The correct approach is to handle the response of the dialog in the main window:
Perhaps a better way of doing this would be to use the Observer design pattern. When the user presses Ok, you save your data. This notifies the treeview that a change has been made, which causes it to reload.