标签: c# windows-runtime
如何设置Brush来设置例如来自RGB代码的Grid。
Brush
Grid
我将RGB代码视为int:
int
R = 12 B = 0 G = 255
我需要知道如何将其转换为Brush
答案 0 :(得分:54)
var brush = new SolidColorBrush(Color.FromArgb(255, (byte)R, (byte)G, (byte)B)); myGrid.Background = brush;