在visual studio 2013中为windows 8.1(平板电脑)编写c#颜色代码

本文关键字:平板电脑 编写 代码 颜色 studio visual 2013 中为 windows | 更新日期: 2023-09-27 18:04:39

color代码应该怎么写

grid-background/textblock-foreground

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

visual studio 2013?(适用于Windows 8.1 tablet (surfaceRT))

在visual studio 2013中为windows 8.1(平板电脑)编写c#颜色代码

你可以试试这些选项

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);    
}

如果出现"颜色"或"颜色"不存在或缺少某些程序集的错误。所以只需右键单击颜色/颜色,选择解决选项。都完成了:)

希望这对你有帮助

For ex

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