GTK:调整文本视图中包含的小部件的大小
我有一个 Gtk.TextView 控件,我正在向其中插入子窗口小部件。 我希望能够在调整表单大小时让子项调整大小以适应 TextView 的宽度。 有内置的方法可以做到这一点吗? 如果没有,有人可以建议我自己编写的好方法吗?
I have a Gtk.TextView
control, and I'm inserting child widgets into it. I'd like to be able to have the children resize to fit the width of the TextView when the form is resized. Is there a built-in way to do this? If not, can anyone suggest a good way of writing my own?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 gtk_text_view_get_window() 方法 获取 Gtk.TextView 的宽度。 使用此数字,您可以相应地调整子窗口小部件的大小。 如果您想在 Gtk.TextView 调整大小时自动调整子窗口小部件的大小,可以使用 信号 check-resize,进行大小调整。
You can use the gtk_text_view_get_window() method to get the width of the Gtk.TextView. With this number you can resize your child-widget accordingly. If you want to resize the child-widget automatically when the Gtk.TextView resizes, you can use the signal check-resize, to do the resizing.