Answers:
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;
LinearGradientBrush
:)
如果要使用十六进制颜色设置背景,可以执行以下操作:
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");
因为如果将来将其升级为使用多个调度程序线程,则应用程序将不会引发线程异常。
您可以将十六进制转换为RGB:
string ccode = "#00FFFF00";
int argb = Int32.Parse(ccode.Replace("#", ""), NumberStyles.HexNumber);
Color clr = Color.FromArgb(argb);
您可以使用十六进制颜色:
your_contorl.Color = DirectCast(ColorConverter.ConvertFromString("#D8E0A627"), Color)