C#Visual Studio 2013中Windows 8.1(平板电脑)的颜色编码

时间:2014-05-22 09:57:53

标签: c# windows-8.1

我可以知道如何编写

颜色代码
  

grid-background / textblock-foreground

if(Condition ==true)
{
   gridName.Backgroud = //How to set color here
}

visual studio 2013 ? (对于Windows 8.1平板电脑(surfaceRT))

2 个答案:

答案 0 :(得分:1)

您可以尝试这些选项

if(Contition == true)
{
    // you can try this
    grid.Background = new SolidColorBurush(Colors.Green);

    // you can try this too
    grid.Background =  new SolidColorBrush(Color.FromArgb(255, 0, 255, 0);    
}

如果您有错误,颜色或颜色不存在或您缺少一些装配。 所以恰到好处点击颜色/颜色,然后选择解决选项。一切都完成了:)

希望这会有所帮助:)

答案 1 :(得分:0)

前者

if(something == true)
{
   grid.Background = new SolidColorBurush(Windows.UI.Colors.Red);
}