共用方式為


ListViewBase.ScrollIntoView 方法

定義

多載

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 的完整範例,

備註

當您 ListViewBase 控件未做為 semanticZoom 控件 檢視時,您可以使用 ScrollIntoView 方法將專案帶入檢視。 若要在 SemanticZoom中使用 ListViewBase 控件時,請改用 makeVisible 方法 專案。

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

要帶入檢視的數據項。

屬性

備註

當您 ListViewBase 控件未做為 SemanticZoom 控件 中的檢視時,您可以使用 ScrollIntoView 方法將專案帶入檢視。 若要在 SemanticZoom中使用 ListViewBase 控件時,請改用 makeVisible 方法 專案。

ItemsSource 的內容 集合變更時,特別是當集合中新增或移除許多專案時,您可能需要呼叫 UpdateLayout,再呼叫 ScrollIntoView,讓指定的專案卷動至檢視區。

另請參閱

適用於