Yanıtlar:
textBox1.Background = Brushes.Blue;
textBox1.Foreground = Brushes.Yellow;
WPF Ön Plan ve Arkaplan tiptedir System.Windows.Media.Brush
. Bunun gibi başka bir renk ayarlayabilirsiniz:
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
:)
Arka planı onaltılık bir renk kullanarak ayarlamak istiyorsanız bunu yapabilirsiniz:
var bc = new BrushConverter();
myTextBox.Background = (Brush)bc.ConvertFrom("#FFXXXXXX");
Veya XAML'de bir SolidColorBrush kaynağı ayarlayabilir ve arkasındaki kodda findResource'u kullanabilirsiniz:
<SolidColorBrush x:Key="BrushFFXXXXXX">#FF8D8A8A</SolidColorBrush>
myTextBox.Background = (Brush)Application.Current.MainWindow.FindResource("BrushFFXXXXXX");
(System.Windows.Media.Brush)Application.Current.FindResource("BrushFFXXXXX");
Gelecekte birden çok dağıtıcı iş parçacığı kullanmak üzere yükseltilmişse uygulamanız bir iş parçacığı istisnası atmayacağından kullanmak çok tercih edilir .
Hex'i RGB'ye dönüştürebilirsiniz:
string ccode = "#00FFFF00";
int argb = Int32.Parse(ccode.Replace("#", ""), NumberStyles.HexNumber);
Color clr = Color.FromArgb(argb);
Onaltılık renkler kullanabilirsiniz:
your_contorl.Color = DirectCast(ColorConverter.ConvertFromString("#D8E0A627"), Color)