GTK:调整文本视图中包含的小部件的大小

发布于 2024-07-12 22:01:22 字数 123 浏览 4 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

临走之时 2024-07-19 22:01:22

您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文