设置单独的 GtkTable 列宽

发布于 2024-12-20 16:01:27 字数 140 浏览 1 评论 0原文

我正在使用 Glade 构建简单的 PyGTK 应用程序。

在一个对话框中,我的表格布局在第一列中带有标签,在第二列中带有文本条目。

问题是两列始终具有相同的宽度,并且我希望第二列比第一列更宽。

我怎样才能做到这一点?

I'm building simple PyGTK app with Glade.

In one dialog I have table layout with labels in first column, and text entries in second column.

The problem is that two columns have always same width, and I want 2nd column to be wider then the first one.

How can I achieve that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

不弃不离 2024-12-27 16:01:27

如果您使用 gtk.Table 在对话框中显示您的小部件。您可以将 homous 属性设置为 False,以便表中的单元格不具有相同的维度。

之后,如果第二列中最大的小部件比第一列中最大的小部件宽(我假设是您的情况),那么第二列将根据您的需要比第一列宽。

If you use a gtk.Table to display your widgets in your dialog. You can set the homogeneous property to False, so that cells in the table don't have the same dimensions.

After that, if the largest widget in the second column is wider than the largest widget in the first column (which I assume is your case), then the secound column will be wider than the first column as you need.

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