-1

我有一些代码。

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

当我添加新项目时,我的滚动条有一些偏移。如何始终将其设置为底部?当我将新项目添加到列表框中时,我想查看它。

4

1 回答 1

1
var lbi  = // the ListBoxItem you're interested in, i.e. the one you added.
MyListBox.ScrollIntoView(lbi);
于 2013-09-17T08:36:59.130 回答