IncrementalUpdateBehavior Class

Represents a behavior that allows incremental updating of ListView and GridView contents to support faster updating. By attaching this behavior to elements in the ItemTemplate used by these views, some of the updates can be deferred until there is render time available, resulting in a smoother experience.

Inheritance Hierarchy

System.Object
  DependencyObject
    Microsoft.Xaml.Interactions.Core.IncrementalUpdateBehavior

Namespace:  Microsoft.Xaml.Interactions.Core
Assembly:  Microsoft.Xaml.Interactions (in Microsoft.Xaml.Interactions.dll)

Syntax

'Declaration
Public NotInheritable Class IncrementalUpdateBehavior _
    Inherits DependencyObject _
    Implements IBehavior
public sealed class IncrementalUpdateBehavior : DependencyObject, 
    IBehavior
public ref class IncrementalUpdateBehavior sealed : public DependencyObject, 
    IBehavior
[<Sealed>]
type IncrementalUpdateBehavior =  
    class 
        inherit DependencyObject 
        interface IBehavior 
    end
public final class IncrementalUpdateBehavior extends DependencyObject implements IBehavior

The IncrementalUpdateBehavior type exposes the following members.

Constructors

  Name Description
Public method IncrementalUpdateBehavior Initializes a new instance of the IncrementalUpdateBehavior class.

Top

Properties

  Name Description
Public property AssociatedObject Gets the DependencyObject to which the IBehavior is attached.
Public property Dispatcher (Inherited from DependencyObject.)
Public property Phase Gets or sets the relative priority of this incremental update. Lower Phase values are addressed first.

Top

Methods

  Name Description
Public method Attach Attaches to the specified object.
Public method ClearValue (Inherited from DependencyObject.)
Public method Detach Detaches this instance from its associated object.
Public method Equals Determines whether the specified object is equal to the current object. (Inherited from Object.)
Public method GetAnimationBaseValue (Inherited from DependencyObject.)
Public method GetHashCode Serves as the default hash function. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method GetValue (Inherited from DependencyObject.)
Public method ReadLocalValue (Inherited from DependencyObject.)
Public method SetValue (Inherited from DependencyObject.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)

Top

Fields

  Name Description
Public fieldStatic member PhaseProperty Specifies the relative priority of this incremental update.

Top

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.Xaml.Interactions.Core Namespace

ListView

GridView

ItemTemplate