Risposte:
textBox1.Background = Brushes.Blue;
textBox1.Foreground = Brushes.Yellow;
Il primo piano e lo sfondo di WPF sono di tipo System.Windows.Media.Brush
. Puoi impostare un altro colore come questo:
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
:)
Se vuoi impostare lo sfondo usando un colore esadecimale puoi farlo:
var bc = new BrushConverter();
myTextBox.Background = (Brush)bc.ConvertFrom("#FFXXXXXX");
Oppure puoi impostare una risorsa SolidColorBrush in XAML e quindi usare findResource nel codice sottostante:
<SolidColorBrush x:Key="BrushFFXXXXXX">#FF8D8A8A</SolidColorBrush>
myTextBox.Background = (Brush)Application.Current.MainWindow.FindResource("BrushFFXXXXXX");
(System.Windows.Media.Brush)Application.Current.FindResource("BrushFFXXXXX");
poiché l'applicazione non genererà un'eccezione di threading se verrà aggiornata per utilizzare più thread dispatcher in futuro.
Presumo che tu stia creando TextBox in XAML?
In tal caso, è necessario assegnare un nome alla casella di testo. Quindi nel code-behind è quindi possibile impostare la proprietà Background usando una varietà di pennelli. Il più semplice dei quali è SolidColorBrush:
myTextBox.Background = new SolidColorBrush(Colors.White);
Puoi convertire hex in RGB:
string ccode = "#00FFFF00";
int argb = Int32.Parse(ccode.Replace("#", ""), NumberStyles.HexNumber);
Color clr = Color.FromArgb(argb);
Puoi usare i colori esadecimali:
your_contorl.Color = DirectCast(ColorConverter.ConvertFromString("#D8E0A627"), Color)