managing-styles-resourcedictionary

WPF Style & ResourceDictionary Patterns

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "managing-styles-resourcedictionary" with this command: npx skills add christian289/dotnet-with-claudecode/christian289-dotnet-with-claudecode-managing-styles-resourcedictionary

WPF Style & ResourceDictionary Patterns

Effectively managing Style and ResourceDictionary for consistent UI and maintainability.

  1. Style Basic Structure

1.1 Explicit Style (With Key)

<Window.Resources> <!-- Explicit style: must reference by key to apply --> <Style x:Key="PrimaryButtonStyle" TargetType="{x:Type Button}"> <Setter Property="Background" Value="#2196F3"/> <Setter Property="Foreground" Value="White"/> <Setter Property="Padding" Value="16,8"/> <Setter Property="FontWeight" Value="SemiBold"/> </Style> </Window.Resources>

<Button Style="{StaticResource PrimaryButtonStyle}" Content="Primary"/>

1.2 Implicit Style (Without Key)

<Window.Resources> <!-- Implicit style: auto-applied to all controls of that type --> <Style TargetType="{x:Type Button}"> <Setter Property="Margin" Value="5"/> <Setter Property="Cursor" Value="Hand"/> </Style> </Window.Resources>

<!-- Style automatically applied --> <Button Content="Auto Styled"/>

  1. Style Inheritance (BasedOn)

2.1 Basic Inheritance

<!-- Base button style --> <Style x:Key="BaseButtonStyle" TargetType="{x:Type Button}"> <Setter Property="Padding" Value="12,6"/> <Setter Property="BorderThickness" Value="0"/> <Setter Property="Cursor" Value="Hand"/> </Style>

<!-- Primary button: inherits base style --> <Style x:Key="PrimaryButtonStyle" TargetType="{x:Type Button}" BasedOn="{StaticResource BaseButtonStyle}"> <Setter Property="Background" Value="#2196F3"/> <Setter Property="Foreground" Value="White"/> </Style>

<!-- Secondary button: inherits base style --> <Style x:Key="SecondaryButtonStyle" TargetType="{x:Type Button}" BasedOn="{StaticResource BaseButtonStyle}"> <Setter Property="Background" Value="#E0E0E0"/> <Setter Property="Foreground" Value="#424242"/> </Style>

2.2 Implicit Style Inheritance

<!-- Explicit style inheriting from implicit style --> <Style TargetType="{x:Type Button}"> <Setter Property="Margin" Value="5"/> </Style>

<Style x:Key="SpecialButtonStyle" TargetType="{x:Type Button}" BasedOn="{StaticResource {x:Type Button}}"> <Setter Property="Background" Value="Gold"/> </Style>

  1. ResourceDictionary

3.1 File Structure

📁 Themes/ ├── 📄 Colors.xaml (Color definitions) ├── 📄 Brushes.xaml (Brush definitions) ├── 📄 Converters.xaml (Converter definitions) ├── 📄 Controls/ │ ├── 📄 Button.xaml (Button styles) │ ├── 📄 TextBox.xaml (TextBox styles) │ └── 📄 ListBox.xaml (ListBox styles) └── 📄 Generic.xaml (Merged dictionary)

3.2 Colors.xaml

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

&#x3C;!-- Base color palette -->
&#x3C;Color x:Key="PrimaryColor">#2196F3&#x3C;/Color>
&#x3C;Color x:Key="PrimaryDarkColor">#1976D2&#x3C;/Color>
&#x3C;Color x:Key="PrimaryLightColor">#BBDEFB&#x3C;/Color>

&#x3C;Color x:Key="AccentColor">#FF4081&#x3C;/Color>

&#x3C;Color x:Key="TextPrimaryColor">#212121&#x3C;/Color>
&#x3C;Color x:Key="TextSecondaryColor">#757575&#x3C;/Color>

&#x3C;Color x:Key="BackgroundColor">#FAFAFA&#x3C;/Color>
&#x3C;Color x:Key="SurfaceColor">#FFFFFF&#x3C;/Color>

&#x3C;Color x:Key="ErrorColor">#F44336&#x3C;/Color>
&#x3C;Color x:Key="SuccessColor">#4CAF50&#x3C;/Color>
&#x3C;Color x:Key="WarningColor">#FFC107&#x3C;/Color>

</ResourceDictionary>

3.3 Brushes.xaml

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

&#x3C;!-- Merge Colors.xaml -->
&#x3C;ResourceDictionary.MergedDictionaries>
    &#x3C;ResourceDictionary Source="Colors.xaml"/>
&#x3C;/ResourceDictionary.MergedDictionaries>

&#x3C;!-- SolidColorBrush definitions -->
&#x3C;SolidColorBrush x:Key="PrimaryBrush" Color="{StaticResource PrimaryColor}"/>
&#x3C;SolidColorBrush x:Key="PrimaryDarkBrush" Color="{StaticResource PrimaryDarkColor}"/>
&#x3C;SolidColorBrush x:Key="PrimaryLightBrush" Color="{StaticResource PrimaryLightColor}"/>

&#x3C;SolidColorBrush x:Key="AccentBrush" Color="{StaticResource AccentColor}"/>

&#x3C;SolidColorBrush x:Key="TextPrimaryBrush" Color="{StaticResource TextPrimaryColor}"/>
&#x3C;SolidColorBrush x:Key="TextSecondaryBrush" Color="{StaticResource TextSecondaryColor}"/>

&#x3C;SolidColorBrush x:Key="BackgroundBrush" Color="{StaticResource BackgroundColor}"/>
&#x3C;SolidColorBrush x:Key="SurfaceBrush" Color="{StaticResource SurfaceColor}"/>

</ResourceDictionary>

3.4 Generic.xaml (Merged Dictionary)

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

&#x3C;ResourceDictionary.MergedDictionaries>
    &#x3C;!-- Order matters: merge in dependency order -->
    &#x3C;ResourceDictionary Source="Colors.xaml"/>
    &#x3C;ResourceDictionary Source="Brushes.xaml"/>
    &#x3C;ResourceDictionary Source="Converters.xaml"/>
    &#x3C;ResourceDictionary Source="Controls/Button.xaml"/>
    &#x3C;ResourceDictionary Source="Controls/TextBox.xaml"/>
    &#x3C;ResourceDictionary Source="Controls/ListBox.xaml"/>
&#x3C;/ResourceDictionary.MergedDictionaries>

</ResourceDictionary>

3.5 Loading in App.xaml

<Application x:Class="MyApp.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <Application.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="/Themes/Generic.xaml"/> </ResourceDictionary.MergedDictionaries> </ResourceDictionary> </Application.Resources> </Application>

  1. StaticResource vs DynamicResource

4.1 Comparison

Aspect StaticResource DynamicResource

Evaluation time Once at XAML load Every time at runtime

Performance Fast Relatively slower

Change reflection No Auto-reflected

Forward reference Not available Available

Use case Fixed resources Theme changes, dynamic resources

4.2 Usage Examples

<!-- StaticResource: immutable resources --> <Button Background="{StaticResource PrimaryBrush}"/>

<!-- DynamicResource: when runtime changes needed --> <Border Background="{DynamicResource ThemeBackgroundBrush}"/>

4.3 Theme Switching Implementation

namespace MyApp.Services;

using System; using System.Windows;

public sealed class ThemeService { private const string LightThemePath = "/Themes/LightTheme.xaml"; private const string DarkThemePath = "/Themes/DarkTheme.xaml";

/// &#x3C;summary>
/// Switch theme
/// &#x3C;/summary>
public void SwitchTheme(bool isDark)
{
    var themePath = isDark ? DarkThemePath : LightThemePath;
    var themeUri = new Uri(themePath, UriKind.Relative);

    var app = Application.Current;
    var mergedDicts = app.Resources.MergedDictionaries;

    // Remove existing theme
    for (var i = mergedDicts.Count - 1; i >= 0; i--)
    {
        var dict = mergedDicts[i];
        if (dict.Source?.OriginalString.Contains("Theme") == true)
        {
            mergedDicts.RemoveAt(i);
        }
    }

    // Add new theme
    mergedDicts.Add(new ResourceDictionary { Source = themeUri });
}

}

  1. Accessing Resources from Code

5.1 Resource Lookup

namespace MyApp.Helpers;

using System.Windows; using System.Windows.Media;

public static class ResourceHelper { /// <summary> /// Find resource (FindResource - throws if not found) /// </summary> public static Brush GetBrush(string key) { return (Brush)Application.Current.FindResource(key); }

/// &#x3C;summary>
/// Find resource (TryFindResource - returns null if not found)
/// &#x3C;/summary>
public static Brush? TryGetBrush(string key)
{
    return Application.Current.TryFindResource(key) as Brush;
}

/// &#x3C;summary>
/// Find resource from element (searches upward)
/// &#x3C;/summary>
public static T? FindResource&#x3C;T>(FrameworkElement element, string key) where T : class
{
    return element.TryFindResource(key) as T;
}

}

5.2 Setting Dynamic Resource

// Set DynamicResource from code button.SetResourceReference(Button.BackgroundProperty, "PrimaryBrush");

// Set StaticResource from code (direct resource assignment) button.Background = (Brush)FindResource("PrimaryBrush");

  1. ComponentResourceKey (For External Libraries)

6.1 Definition

namespace MyLib.Controls;

using System.Windows;

public static class MyLibResources { // Define component resource key public static readonly ComponentResourceKey PrimaryBrushKey = new(typeof(MyLibResources), "PrimaryBrush");

public static readonly ComponentResourceKey ButtonStyleKey =
    new(typeof(MyLibResources), "ButtonStyle");

}

6.2 Usage

<!-- Generic.xaml (in Themes folder) --> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:MyLib.Controls">

&#x3C;SolidColorBrush x:Key="{ComponentResourceKey TypeInTargetAssembly={x:Type local:MyLibResources}, ResourceId=PrimaryBrush}"
                 Color="#2196F3"/>

</ResourceDictionary>

<!-- Consumer side --> <Button Background="{StaticResource {x:Static local:MyLibResources.PrimaryBrushKey}}"/>

  1. Resource Lookup Order

  2. Element's own Resources

  3. Parent element Resources (searching upward in Visual Tree)

  4. Window/Page Resources

  5. Application.Resources

  6. Theme resources (Generic.xaml)

  7. System resources (SystemColors, SystemFonts)

  8. Checklist

  • Define colors as Color type, Brushes in separate file

  • Separate style files per control

  • Use StaticResource for fixed resources, DynamicResource for theme resources

  • Verify ResourceDictionary merge order (dependency order)

  • Inherit common styles with BasedOn

  • Expose library resources with ComponentResourceKey

  1. References
  • Resources Overview - Microsoft Docs

  • Styles and Templates - Microsoft Docs

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

converting-html-css-to-wpf-xaml

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

publishing-wpf-apps

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

using-xaml-property-element-syntax

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

designing-avalonia-customcontrol-architecture

No summary provided by upstream source.

Repository SourceNeeds Review