小部件的宽度
在 PyGTK 中计算小部件尺寸的最简单方法是什么?我知道使用 gtk.Window 对象很容易做到,但我在参考手册中找不到任何获取其他对象尺寸的方法。
非常感谢任何帮助,谢谢:D
In PyGTK what is the easiest way to figure out the dimensions of a widget? I know that it is easy to do with the gtk.Window object, but I can't find in the reference manual any way to get dimensions for the other objects.
Any help is greatly appreciated thanks :D
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能正在寻找 get_allocation 方法:
或size_request:
后者是小部件希望拥有的大小(给定字体信息),前者是在布局小部件时由其容器实际给出的大小。
You may be looking for the get_allocation method:
or size_request:
The latter is what the widget would like to have as its size (given font information), the former what it's actually given by its container when it lays out the widgets.