垂直滚动条始终为底部

时间:2013-09-17 08:24:42

标签: c# wpf scrollview

我有一些代码。

<ScrollViewer VerticalScrollBarVisibility="Auto">
<ListBox Grid.Column="0" ItemsSource="{Binding Messagies}"  ScrollViewer.HorizontalScrollBarVisibility="Disabled"/>     </ScrollViewer>

当我添加新项目时,我的滚动条有一些偏移量。我怎么能一直把它设置到底部? 当我将它添加到listBox中时,我想看到新项目。

1 个答案:

答案 0 :(得分:1)

var lbi  = // the ListBoxItem you're interested in, i.e. the one you added.
MyListBox.ScrollIntoView(lbi);