VirtualizingStackPanel.IsVirtualizingProperty Property

Definition

Identifies the VirtualizingStackPanel.IsVirtualizing attached property.

public:
 static property DependencyProperty ^ IsVirtualizingProperty { DependencyProperty ^ get(); };
static DependencyProperty IsVirtualizingProperty();
public static DependencyProperty IsVirtualizingProperty { get; }
var dependencyProperty = VirtualizingStackPanel.isVirtualizingProperty;
Public Shared ReadOnly Property IsVirtualizingProperty As DependencyProperty

Property Value

The identifier for the VirtualizingStackPanel.IsVirtualizing attached property.

Remarks

VirtualizingStackPanel.IsVirtualizing is an atypical attached property because it does not have a Set accessor, and thus is not really a XAML attached property with a markup usage. Instead, VirtualizingStackPanel.IsVirtualizing functions as a sentinel whereby child elements can query the VirtualizingStackPanel parent, and determine whether virtualization is being used. This might be important information for layout logic or further virtualization logic that is used by the child element itself.

Applies to