如何连接 GtkTreeVew 和 GtkListStore?
如何连接 GtkTreeVew 和 GtkListStore?
我的 TreeView 可以很好地显示 ListStore 的数据,但当用户更改 cellrenderer 小部件之一中的值时,不会更新 ListStore。小部件行为正常,但当它们失去焦点时,值将恢复正常。
我是否必须为我创建的每个单元编写信号处理程序,或者是否应该设置一些设置?
我正在使用空地来创建这些模型。
How do you connect a GtkTreeVew and a GtkListStore?
My TreeView shows the ListStore's data fine, but won't update the ListStore when the user changes a value in one of the cellrenderer widgets. The widgets behave normally but when they lose focus the value returns to normal.
Would I have to write signal handlers for every cell I make or is there some setting I should be setting?
I'm using glade to create these models.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显然,做到这一点的唯一方法是捕获编辑后的信号并手动处理它。真丢脸。
Apparently the only way to do this is to catch the edited signal and handle it manually. What a shame.