GridView.GridViewScrollViewerStyleKey Property

Definition

Gets the key that references the style that is defined for the ScrollViewer control that encloses the content that is displayed by a GridView.

public:
 static property System::Windows::ResourceKey ^ GridViewScrollViewerStyleKey { System::Windows::ResourceKey ^ get(); };
public static System.Windows.ResourceKey GridViewScrollViewerStyleKey { get; }
static member GridViewScrollViewerStyleKey : System.Windows.ResourceKey
Public Shared ReadOnly Property GridViewScrollViewerStyleKey As ResourceKey

Property Value

A ResourceKey that references the Style that is applied to the ScrollViewer control for a GridView. The default value is the style for the ScrollViewer object of a ListView in the current theme.

Remarks

You can use this read-only static property in Extensible Application Markup Language (XAML) by assigning its static value to another property value. Specifically, this property's static value defines the resource key that is used to look up the default ScrollViewer style of a GridView. To redefine this style, reference the GridViewScrollViewerStyleKey by using the x:Static Markup Extension and assign that value as the x:Key Directive of the new Style.

Applies to