标签: c# xaml windows-runtime
我动态生成了一个Button,现在我需要更改前景色并设置BorderBrush。 但我不能使用像btn.Foreground = Brushes.Yellow;
btn.Foreground = Brushes.Yellow;
VS2013警告'画笔不存在。'
答案 0 :(得分:0)
试试这个: 包括此程序集'System.Windows.Media'
btn.Foreground=new SolidColorBrush(Colors.Yellow);