标签: silverlight silverlight-5.0
我希望在单击文本框时更改它的前景属性。在WPF中我可以说textBox1.Foreground = Brushes.Black;但是在Silverlight中你不能使用System.Drawing。还有其他方法吗?
textBox1.Foreground = Brushes.Black;
System.Drawing
答案 0 :(得分:1)
在Silverlight中,您可以将SolidColorBrush实例用作Foreground,例如:
SolidColorBrush
Foreground
textBox1.Foreground = new SolidColorBrush(Colors.Black);