46

我怎样才能从 RGB 代码Brush中设置例如 a 的背景。Grid

我将 RGB 代码作为int

R = 12
B = 0
G = 255

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

4

1 回答 1

75
var brush = new SolidColorBrush(Color.FromArgb(255, (byte)R, (byte)G, (byte)B));
myGrid.Background = brush;
于 2013-04-26T15:59:50.693 回答