如何更改TextBox的背景颜色
本文关键字:背景 颜色 TextBox 何更改 | 更新日期: 2023-09-27 18:20:31
我正在处理WPF,我想更改背景---文本框的颜色(txtStatus.Background=white),但它给出了错误。我的代码是:
public Window2()
{
InitializeComponent();
txtStatus.Text = "Current Operation: NULL";
txtStatus.Background= white
}
您需要使用Brushes
:
txtStatus.Foreground = Brushes.White;
它包含很多颜色,不过如果你想使用aRGB值,你可以这样做:
txtStatus.Foreground = new SolidBrush(Color.FromArgb(255, 0, 0, 255));