HBox 中的 PyGTK 间距
我是 GTK 的新手,我正在尝试弄清楚如何完成这样的事情:
+---+------+---+
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
+---+------+---+
我希望在 HBox 中完成此操作。我将如何实现这个目标?谢谢。
I'm new to GTK, I'm trying to figure out how to accomplish something like this:
+---+------+---+
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
+---+------+---+
I want this done in an HBox. How would I accomplish this? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是通过“打包”完成的。
我总是把类参考放在枕头下: http://www.pygtk .org/docs/pygtk/gtk-class-reference.html
优秀教程中的示例在这里找到:
http://www.pygtk.org/pygtk2tutorial/sec-DetailsOfBoxes.html
最后,这会显示类似于您的绘图的内容:
玩得开心! (希望我的回答对你有帮助)
It is done with "packing".
I always keep the class reference under my pillow : http://www.pygtk.org/docs/pygtk/gtk-class-reference.html
Samples in the good tutorial found here :
http://www.pygtk.org/pygtk2tutorial/sec-DetailsOfBoxes.html
And finally, this shows up something like your drawing :
Have fun ! (and I hope my answer is helpful)
答案是 pack_start() 和 pack_end()
该函数有一些参数,您可以发送给它,这些参数可以给您带来所需的效果
如果您使用 Louis 的示例:
希望有帮助!
The answer is pack_start() and pack_end()
The function has a few parameters you can send to it that give you the desired effect
If you use Louis' example:
Hope that helps!