List of styles in Material Design Colors and Themes

13,182

Solution 1

Assuming you mean this: http://materialdesigninxaml.net/

You can pull the source and take a look at it: https://github.com/ButchersBoy/MaterialDesignInXamlToolkit

You can just take a look round on the site for a fair bit of what I should think you want.

https://github.com/ButchersBoy/MaterialDesignInXamlToolkit/tree/master/MaterialDesignColors.Wpf/Themes

Solution 2

The complete list of all the available styles is in MDIX wiki, ordered by control. No need to browse the XAML source code by control:

https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/wiki/ControlStyleList

Share:
13,182
Rafal010101
Author by

Rafal010101

Updated on June 08, 2022

Comments

  • Rafal010101
    Rafal010101 almost 2 years

    I try to create my first c#/wpf/xalm project using Material Design Colors and Themes. I have some tutorial where are defined some styles e.g. for checkboxes are:

    Style="{StaticResource MaterialDesignActionDarkCheckBox}
    Style="{StaticResource MaterialDesignActionLightCheckBox}
    for Buttons Style="{StaticResource MaterialDesignFlatButton}"
    

    etc.

    My question is: where I can find list of all available styles in Material Design?