Gets the ComponentResourceKey that references the default theme that is defined for the calendar control.

Namespace:  C1.WPF.C1Schedule
Assembly:  C1.WPF.C1Schedule (in C1.WPF.C1Schedule.dll)

Syntax

C#
public static readonly ComponentResourceKey DefaultThemeKey
Visual Basic (Declaration)
Public Shared ReadOnly DefaultThemeKey As ComponentResourceKey

Remarks

You can use this read-only static field in XAML by assigning its static value to another property value. Specifically, this field's value defines the ComponentResourceKey that is used to look up the default theme. To redefine this theme, reference the DefaultThemeKey by using the x:Static Markup Extension and assign that value as the x:Key Attribute of the new ResourceDictionary object. You can use this field in XAML as an x:Key Attribute of a ResourceDictionary that redefines the theme for the calendar control.

Examples

Copy CodeC#
<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary x:Key="{x:Static C1_WPF_C1Schedule:C1CalendarBase.DefaultThemeKey}"
                            Source="/C1.WPF.C1Schedule;component/themes/CalendarThemes/Luna/HomeStead.xaml" />
    </ResourceDictionary>
</Application.Resources>

See Also