从 Gtkmm::Table 中删除一行
如何在 C++ 中从 Gtkmm::Table
中删除一行?
文档真的很差:-(。我尝试使用 resize()
但没有任何效果,并且还在 Gtk::Widget&
处调用 remove
> 我通过 get_children() 获得的,但是我得到了段错误...
How do I erase a row from a Gtkmm::Table
in C++?
Documentation is really poor :-(. I have tried using resize()
with no effect, and also calling remove
at a Gtk::Widget&
that I obtained through get_children()
, but the I get segfault...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
Gtkmm::Table
是 GtkTable 那么gtk_container_remove 也许应该做你需要的。我做了一个小例子(见下文),它从表格容器中删除所有标签小部件。希望这有帮助,问候
If
Gtkmm::Table
is GtkTable then gtk_container_remove should, probably, do what you need. I've made a small example (see below) it removes all label widget from the table container.hope this helps, regards