2
Answers

How do I change the background of a TextBox?

Clyde Eisenbeis

Clyde Eisenbeis

Dec 08
294
1

XAML

<TextBox  x:Name="gTBxComment" 
          Background="#ffffcc"
          />

XAML.CS

gTBxComment.Background = ???

How do I change the background of a TextBox to another color?

Answers (2)