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.
我正在使用 python 2.5 + pygtk。我在滚动窗口中添加了一个文本区域。文本区域缓冲区将随程序输出而更新。
我想在底部设置 scrolledwindow->vscrollbar 。
我尝试了 pygtk 文档中给出的不同选项。但是没有成功。。
有什么建议需要做什么???
您必须获取滚动窗口的垂直调整,然后将其值设置为其上限:
adjustment = yourScrolledWindow.get_vadjustment() adjustment.set_value(adjustment.get_upper())