即使小部件尝试扩展,如何强制 GTK 窗口保持一定的宽度?
如何强制 GTK 窗口对象保持相同的大小,即使其中的表试图扩展?
我尝试在将子项附加到表格时使用 gtk.SHRINK,但表格中的 TextView 仍然不断扩展至超出可接受的宽度,并随之扩展窗口。
How do I force a GTK window object to stay the same size, even when a table inside of it tries to expand?
I've tried using gtk.SHRINK when attaching children to the table, but the TextViews within the table still keep expanding to way beyond an acceptable width and expanding the window along with it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
大小
您可以手动设置 pyGtk 窗口的 文档:
http://www.pygtk.org/docs/pygtk/class-gtkwindow.html
You can set the size manually
pyGtk window docs:
http://www.pygtk.org/docs/pygtk/class-gtkwindow.html
如果将文本视图打包到
gtk.ScrolledWindow
中,文本视图将不会展开。这不是你直接问的,但我相信应该以更好的方式解决你的问题。Text views won't expand if you pack them into a
gtk.ScrolledWindow
. This is not what you directly asked, but I believe should solve your problem in a better way.