web-dev-qa-db-fra.com

Comment obtenir un pinceau à partir d'un code RVB?

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

29
gurehbgui
var brush = new SolidColorBrush(Color.FromArgb(255, (byte)R, (byte)G, (byte)B));
myGrid.Background = brush;
57
Chris Sinclair