ListBox.ScrollIntoView(Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
使对象滚动到视图中。
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
注解
如果该对象不可见,则它与视区顶部或底部对齐。