As I develop our enterprise suite of application, we want to do something like:
Create a button that clears everything out of a list. Its text is a FontAwesome symbol. However, we want the color to be the SAME color that we have when you see the circle-x that can be embedded inside a combobox.
Working with devex in the past, here's an example of somethign that works:
Code<dxi:ThemeResource x:Key="ColorRemove" ThemeKey="{dxt:ThemedWindowThemeKey ResourceKey=WindowInactiveBorderBrush}" />
I can't figure out what other options I have besides ThemedWindowThemeKey. If I search (in xaml autocomplete) for brush in ThemedWindowThemeKey, I get these options for brushes:
Are there more anywhere else? If so, how do I access them?
Thanks!