使用 python 和 GObject 在空地添加组合框
我正在尝试将组合框应用于小型 GTK3 界面,但我无法真正弄清楚如何填充其列表,以及如何将界面的组合框与我的 python 代码连接起来。
有人可以用一个小例子告诉我怎么做吗?剩下的部分我一定能完成。
I'm trying to apply a combobox to a small GTK3 interface, but I can't really figure out how to populate its list, and how to connect the interface's combobox with my python code.
Could someone show me how in a little example? The rest of it I will be able to finish.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ComboBox 与 TextView 或 TreeView 一样,都是将视图(它的外观)与模型(它们包含什么信息)明确分开的小部件。您需要在 Glade 中执行以下操作:
我能想到的较小的例子是这样的:
test.glade
test.py
亲切的问候
ComboBoxes, like TextViews or TreeViews are widgets that clearly separates the View (what it looks like) from the Model (What info they hold). You need to do in Glade:
The smaller example I could think of is this one:
test.glade
test.py
Kind regards