如何从 GtkHBox 中删除小部件?
我可以调用某种 unpack
函数来从 GtkHBox 中删除小部件吗?
Is there some kind of unpack
function I can call to remove widgets from a GtkHBox ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
gtk_container_remove()
是您正在寻找什么,或者如果您不打算将该小部件用于其他任何用途,则只需gtk_widget_destroy()
即可。gtk_container_remove()
is what you're looking for, or simplygtk_widget_destroy()
if you're not going to use the widget for anything else.