设置按钮的前景色

时间:2014-12-02 09:52:16

标签: c# xaml windows-runtime

我动态生成了一个Button,现在我需要更改前景色并设置BorderBrush。 但我不能使用像btn.Foreground = Brushes.Yellow;

这样的代码

VS2013警告'画笔不存在。'

1 个答案:

答案 0 :(得分:0)

试试这个: 包括此程序集'System.Windows.Media'

btn.Foreground=new SolidColorBrush(Colors.Yellow);