我有一些代码。
<ScrollViewer VerticalScrollBarVisibility="Auto">
<ListBox Grid.Column="0" ItemsSource="{Binding Messagies}" ScrollViewer.HorizontalScrollBarVisibility="Disabled"/> </ScrollViewer>
当我添加新项目时,我的滚动条有一些偏移量。我怎么能一直把它设置到底部? 当我将它添加到listBox中时,我想看到新项目。
答案 0 :(得分:1)
var lbi = // the ListBoxItem you're interested in, i.e. the one you added.
MyListBox.ScrollIntoView(lbi);