프로그래밍/WPF

[WPF] String Color to Brush

흔한티벳여우 2022. 9. 8. 13:01
반응형

#FFFFFF같은 string type 색을 Brush 로 변환하는 방법은 아래와 같다.

 

Brush myBrush = new BrushConverter().ConvertFromString("#FFFFFF") as SolidColorBrush;

 

반응형