我有一个资源字典,它为我的应用程序定义了很多样式。 举个例子:其中一个样式是GridStyles.xaml中网格的AlternateRowBackground颜色
<SolidColorBrush x:Key="AlternateRowBackground" color="Gray" />
如何向用户公开?因此,在运行时,如果他想将其更改为红色/黄色/等等,他可以。
感谢。
答案 0 :(得分:0)
对于其他想知道这是怎么做的人。 这是我如何解决这个问题。
<Setter Property="Background" Value="{Binding Source={x:Static model:GlobalSettingsModel.Instance},Path=AlternateRowBackground}"/>