ScrollViewer.IsDeferredScrollingEnabled 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
public:
property bool IsDeferredScrollingEnabled { bool get(); void set(bool value); };
public bool IsDeferredScrollingEnabled { get; set; }
member this.IsDeferredScrollingEnabled : bool with get, set
Public Property IsDeferredScrollingEnabled As Boolean
屬性值
如果使用者拖曳 Thumb 的 ScrollBar 時內容為靜態,則為 true
,否則為 false
。
範例
下列範例顯示 ScrollViewer 屬性設定為 true
的 IsDeferredScrollingEnabled 。
<ScrollViewer Grid.Column="0" Grid.Row="0" Height="200" Name="sv1" IsDeferredScrollingEnabled="true">
<StackPanel>
<TextBlock Text="1" Height="50"/>
<TextBlock Text="2" Height="50"/>
<TextBlock Text="3" Height="50"/>
<TextBlock Text="4" Height="50"/>
<TextBlock Text="5" Height="50"/>
<TextBlock Text="6" Height="50"/>
<TextBlock Text="7" Height="50"/>
<TextBlock Text="8" Height="50"/>
<TextBlock Text="9" Height="50"/>
<TextBlock Text="10" Height="50"/>
</StackPanel>
</ScrollViewer>
備註
顯示大量專案可能會導致效能問題。 在此情況下,使用延後捲動可能會很有用。 如需詳細資訊,請參閱 優化效能:控制項。
這個屬性可以當做實例屬性和附加屬性使用。