在C#代码中设置WPF文本框的背景颜色


Answers:


334
textBox1.Background = Brushes.Blue;
textBox1.Foreground = Brushes.Yellow;

WPF前景和背景类型为System.Windows.Media.Brush。您可以像这样设置其他颜色:

using System.Windows.Media;

textBox1.Background = Brushes.White;
textBox1.Background = new SolidColorBrush(Colors.White);
textBox1.Background = new SolidColorBrush(Color.FromArgb(0xFF, 0xFF, 0, 0));
textBox1.Background = System.Windows.SystemColors.MenuHighlightBrush;

2
如果我们要为color属性设置一个十六进制值,怎么办?
索伦,2010年

11
您可以使用类似Brush brush = new SolidColorBrush(Color.FromRgb(r,g,b));之类的东西。
Timbo,2010年

3
还有很多漂亮的东西LinearGradientBrush:)
BlueRaja-Danny Pflughoeft 2010年

6
确保包括System.Windows.Media。
mack

98

如果要使用十六进制颜色设置背景,可以执行以下操作:

var bc = new BrushConverter();

myTextBox.Background = (Brush)bc.ConvertFrom("#FFXXXXXX");

或者,您可以在XAML中设置SolidColorBrush资源,然后在后面的代码中使用findResource:

<SolidColorBrush x:Key="BrushFFXXXXXX">#FF8D8A8A</SolidColorBrush>
myTextBox.Background = (Brush)Application.Current.MainWindow.FindResource("BrushFFXXXXXX");

最好使用,(System.Windows.Media.Brush)Application.Current.FindResource("BrushFFXXXXX");因为如果将来将其升级为使用多个调度程序线程,则应用程序将不会引发线程异常。
康坦戈

24

我认为您正在XAML中创建TextBox?

在这种情况下,您需要为文本框命名。然后,在后面的代码中,您可以使用各种画笔设置Background属性。其中最简单的是SolidColorBrush:

myTextBox.Background = new SolidColorBrush(Colors.White);

6

您可以将十六进制转换为RGB:

string ccode = "#00FFFF00";
int argb = Int32.Parse(ccode.Replace("#", ""), NumberStyles.HexNumber);
Color clr = Color.FromArgb(argb);


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.