如何在c#中使用Background属性?

时间:2015-03-12 19:27:38

标签: c# xaml windows-phone-8.1

我有一个Grid,其背景属性设置如下:

  <Grid x:Name="PaginaMain" Background="#FFD39448">

我想通过c#后面的代码输入颜色代码。我怎么办?

我试过了,但这不是正确的方法

PaginaMain.Background = # FFD39448;

1 个答案:

答案 0 :(得分:1)

PaginaMain.Background = new SolidColorBrush(Color.FromArgb(0xFF, 0xD3, 0x94, 0x48));