Rafal010101
Rafal010101

Reputation: 203

List of styles in Material Design Colors and Themes

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?

Upvotes: 8

Views: 18278

Answers (2)

am9417
am9417

Reputation: 1036

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

Upvotes: 5

Andy
Andy

Reputation: 12276

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

Upvotes: 9

Related Questions