标签: silverlight windows-phone-7 colors windows-phone
我的Windows手机应用程序中有一个按钮。我将其前景色设置为“红色”。我希望得到这种颜色,以检查它是否为红色我需要将其更改为蓝色。
如何获取控件的前景色(此处为按钮)?
谢谢, Stallin
答案 0 :(得分:3)
前景基本上是Brush对象。您可以通过
Brush
var colorbrush = mybutton.Foreground as Brush;
colorbrush应包含该对象。请参阅documentation以提取或更改此对象的颜色。
colorbrush