伙计们我试图在我的代码后面使用Style.xaml中的样式
在我的风格上,我有这样的代码
文件Style.xaml
<SolidColorBrush x:Key="FontGrey" Color="#FFC5C0C0"></SolidColorBrush>
在我的Apptest.xaml.cs文件上,我有这样的代码
txt.Foreground = new SolidColorBrush(Color.FromArgb(255, 252, 147, 25));
如果我想基于style.xaml更改前景色
我怎样才能做到这一点?我正在尝试使用资源,但没有用
注意:Style.xaml和Apptest.xaml是分开的
最佳答案
您可以使用以下语法在Silverlight中访问定义的资源:
txt.Foreground = (SolidColorBrush)Application.Current.Resources["FontGrey"];