如何从RGB代码获取画笔?

时间:2013-04-26 15:57:31

标签: c# windows-runtime

如何设置Brush来设置例如来自RGB代码的Grid

我将RGB代码视为int

R = 12
B = 0
G = 255

我需要知道如何将其转换为Brush

1 个答案:

答案 0 :(得分:54)

var brush = new SolidColorBrush(Color.FromArgb(255, (byte)R, (byte)G, (byte)B));
myGrid.Background = brush;