Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的代码,我想锁定按钮和条目的高度
https://gist.github.com/rayeshman/6473787
谢谢。
当您pack_start()将小部件放入框中时,不要传递True, True“扩展”和“填充”参数,除非您真的希望它们扩展并填充可用空间。在这种情况下,写
pack_start()
True, True
self.vbox.pack_start(self.hbox2, False, False, 0)
将防止按钮和条目在垂直方向上变大。
您可能会考虑使用Gtk.Grid来安排您的小部件 -Gtk.Box不一定要听hexpandandvexpand属性。
Gtk.Grid
Gtk.Box
hexpand
vexpand