How can I change the background and foreground colors of a WPF Textbox programatically in c#?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||||||||||||||
|
|
If you want to set the background using a Hex Color you could do this:
OR you could set up a SolidColorBrush resource in xaml, and then use findResource in codebehind
|
|||
|
|
|
I take it you are creating the TextBox in xaml? In that case you need to give the text box a name. Then in the code behind you can then set the Background property using a variety of brushes. The simplest of which is the SolidColorBrush:
|
|||
|
|
|
you can convert hex2rgb
|
|||
|
|
|
You can use hex colors:
|
||||
|
|