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 的完整範例。
備註
當 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,讓指定的專案捲動到檢視區。