ListViewBase.ScrollIntoView 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
ScrollIntoView(Object, ScrollIntoViewAlignment) |
捲動清單,以使用指定的對齊方式將指定的數據項帶入檢視中。 |
ScrollIntoView(Object) |
捲動清單以將指定的數據項帶入檢視。 |
ScrollIntoView(Object, ScrollIntoViewAlignment)
捲動清單,以使用指定的對齊方式將指定的數據項帶入檢視中。
public:
virtual void ScrollIntoView(Platform::Object ^ item, ScrollIntoViewAlignment alignment) = ScrollIntoView;
/// [Windows.Foundation.Metadata.Overload("ScrollIntoViewWithAlignment")]
void ScrollIntoView(IInspectable const& item, ScrollIntoViewAlignment const& alignment);
[Windows.Foundation.Metadata.Overload("ScrollIntoViewWithAlignment")]
public void ScrollIntoView(object item, ScrollIntoViewAlignment alignment);
function scrollIntoView(item, alignment)
Public Sub ScrollIntoView (item As Object, alignment As ScrollIntoViewAlignment)
參數
- item
-
Object
Platform::Object
IInspectable
要帶入檢視的數據項。
- alignment
- ScrollIntoViewAlignment
列舉值,指定專案是否使用 預設 或 前置 對齊方式。
- 屬性
範例
您可以在這裡找到如何使用 ScrollIntoView 的完整範例,。
備註
當您
當 ItemsSource 的內容 集合變更時,特別是當集合中新增或移除許多專案時,您可能需要呼叫 UpdateLayout,然後呼叫 ScrollIntoView,讓指定的專案捲動至檢視區。
另請參閱
適用於
ScrollIntoView(Object)
捲動清單以將指定的數據項帶入檢視。
public:
virtual void ScrollIntoView(Platform::Object ^ item) = ScrollIntoView;
/// [Windows.Foundation.Metadata.Overload("ScrollIntoView")]
void ScrollIntoView(IInspectable const& item);
[Windows.Foundation.Metadata.Overload("ScrollIntoView")]
public void ScrollIntoView(object item);
function scrollIntoView(item)
Public Sub ScrollIntoView (item As Object)
參數
- item
-
Object
Platform::Object
IInspectable
要帶入檢視的數據項。
- 屬性
備註
當您
當 ItemsSource 的內容 集合變更時,特別是當集合中新增或移除許多專案時,您可能需要呼叫 UpdateLayout,再呼叫 ScrollIntoView,讓指定的專案卷動至檢視區。