回答:
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
:)
16進数の色を使用して背景を設定する場合は、次のようにします。
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");
アプリケーションが将来複数のディスパッチャスレッドを使用するようにアップグレードされた場合、アプリケーションはスレッド例外をスローしないため、使用することをお勧めします。
16進数をRGBに変換できます。
string ccode = "#00FFFF00";
int argb = Int32.Parse(ccode.Replace("#", ""), NumberStyles.HexNumber);
Color clr = Color.FromArgb(argb);
16進数の色を使用できます。
your_contorl.Color = DirectCast(ColorConverter.ConvertFromString("#D8E0A627"), Color)