小编典典

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

all

如何在 C# 中以编程方式更改 WPF 文本框的背景和前景色?


阅读 58

收藏
2022-07-07

共1个答案

小编典典

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

WPF Foreground and Background 是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;
2022-07-07