Glade GTK 访问各个小部件
我使用glade构建了一个数据库操作GUI, 对于我的添加按钮 层次结构是添加->确认对话框->(如果是)添加数据。 如何访问主窗体中的每个小部件值? 我是 gtk 和glade 的新手,我设法摆脱了大部分错误。
I constructed a database manipulating GUI using glade,
for my add button
hierarchy is add->confirmation dialog->(if yes)add data.
how could each widget values in the main form be accessed?
i am new to gtk and glade, i managed to get rid of most of the errors.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常你会像 Ethan 说的那样使用 GtkBuilder。据我所知,动态创建的小部件不能那么容易查找。我只是将一小组指针传递给需要它们的模块。
Ordinarily you would use GtkBuilder like Ethan said. As far as I know, dynamically-created widgets can't be so easily looked-up. I'd just pass a small array of pointers to the modules that need them.