Comment puis-je obtenir un Brush
pour définir un arrière-plan, par exemple un Grid
d'un code RGB.
J'ai le code RGB comme int
:
R = 12
B = 0
G = 255
J'ai besoin de savoir comment le convertir en Brush
var brush = new SolidColorBrush(Color.FromArgb(255, (byte)R, (byte)G, (byte)B));
myGrid.Background = brush;