我正在WPF上工作,我想更改背景---文本框的颜色(txtStatus.Background =白色),但是它给出了错误。这是我的代码:

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));

关于c# - 如何更改文本框的背景颜色?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17408406/

10-09 23:45