如何在Windows Phone 7中获得控件的颜色

时间:2012-03-05 10:40:41

标签: silverlight windows-phone-7 colors windows-phone

我的Windows手机应用程序中有一个按钮。我将其前景色设置为“红色”。我希望得到这种颜色,以检查它是否为红色我需要将其更改为蓝色。

如何获取控件的前景色(此处为按钮)?

谢谢, Stallin

1 个答案:

答案 0 :(得分:3)

前景基本上是Brush对象。您可以通过

获取对象

var colorbrush = mybutton.Foreground as Brush;

colorbrush应包含该对象。请参阅documentation以提取或更改此对象的颜色。