一切都在标题中。
我希望在我的资源中获得我选择的主要颜色:
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Primary/MaterialDesignColor.DeepPurple.xaml" />
要在我的边境BorderBrush
上使用它:
<Border BorderBrush="" BorderThickness="2,0,0,0" Padding="10" >
谢谢你
答案 0 :(得分:4)
应该是这样的:
<Border BorderBrush="{DynamicResource PrimaryHueMidBrush}" BorderThickness="2" Padding="10" Height="50" Width="300">
<TextBlock Text="Material Design Test" />
</Border>
您可以将PrimaryHueMidBrush
替换为PrimaryHueLightBrush
或PrimaryHueDarkBrush
。