ListBox.ScrollIntoView(Object) 方法

定义

使对象滚动到视图中。

public:
 void ScrollIntoView(System::Object ^ item);
public void ScrollIntoView (object item);
member this.ScrollIntoView : obj -> unit
Public Sub ScrollIntoView (item As Object)

参数

item
Object

要滚动的对象。

示例

以下示例演示如何使用 ScrollIntoView 该方法将列表框中的项滚动到视区。

private void ScrollIntoView(object sender, RoutedEventArgs e)
{
    var index = cbScrollIntoView.SelectedIndex;
    var item = lbScrollIntoView.Items.GetItemAt(index);
    lbScrollIntoView.ScrollIntoView(item);
}
Private Sub ScrollIntoView(ByVal sender As Object, ByVal e As RoutedEventArgs)
    Dim index = cbScrollIntoView.SelectedIndex
    Dim item = lbScrollIntoView.Items.GetItemAt(index)
    lbScrollIntoView.ScrollIntoView(item)
End Sub

注解

如果该对象不可见,则它与视区顶部或底部对齐。

适用于