SolidColorBrush thickness property
- by developer
Hi All,
Is it possible to set thickness property of SolidColorBrush. The reason I am asking is that I have a IValueConverter binding to Textbox Border BorderBrush property and I am dynamically setting the color of the textbox using the below code,
SolidColorBrush tbbrush = new SolidColorBrush(Colors.DarkGray);
return tbbrush;
I also want to change the thickness property of the border, but without writing a new IValueConverter. Is it possible?