ScrollViewer.IsDeferredScrollingEnabled Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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
Valeur de propriété
true
si le contenu est stationnaire lorsque l'utilisateur fait glisser Thumb de ScrollBar ; sinon, false
.
Exemples
L’exemple suivant montre une ScrollViewer propriété IsDeferredScrollingEnabled définie true
sur .
<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>
Remarques
L’affichage d’un grand nombre d’éléments peut entraîner des problèmes de performances. Dans ce cas, il peut être utile d’utiliser le défilement différé. Pour plus d’informations, consultez Optimisation des performances : contrôles.
Cette propriété peut être utilisée en tant que propriété d’instance et propriété jointe.