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.
我有 ScrolledWindow(里面是 TreeView),我需要滚动到顶部。你有什么想法吗?每个答案将不胜感激。谢谢
在 GTk+ 中,您基本上可以获得滚动窗口的垂直调整并使用它来设置滚动位置。我不知道 gtk# 的详细信息,但这是 c++ (gtkmm) 中的方法:
scrollWin.get_vadjustment()->set_value(0);
Gtk# 应该类似。
在 GTK# 中,用于名为scrollWintype的变量GtkScrolledWindow
scrollWin
GtkScrolledWindow
scrollWin.Vadjustment.Value = 0;