解决方法
如果是WPF,则静态类画笔中会显示一组颜色.
TextBox.Background = Brushes.Red;
当然,如果需要,您可以创建自己的画笔.
LinearGradientBrush myBrush = new LinearGradientBrush(); myBrush.GradientStops.Add(new GradientStop(Colors.Yellow,0.0)); myBrush.GradientStops.Add(new GradientStop(Colors.Orange,0.5)); myBrush.GradientStops.Add(new GradientStop(Colors.Red,1.0)); TextBox.Background = myBrush;