Réponses:
textBox1.Background = Brushes.Blue;
textBox1.Foreground = Brushes.Yellow;
WPF Foreground and Background est de type System.Windows.Media.Brush
. Vous pouvez définir une autre couleur comme ceci:
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
:)
Si vous souhaitez définir l'arrière-plan en utilisant une couleur hexadécimale, vous pouvez le faire:
var bc = new BrushConverter();
myTextBox.Background = (Brush)bc.ConvertFrom("#FFXXXXXX");
Ou vous pouvez configurer une ressource SolidColorBrush en XAML, puis utiliser findResource dans le code-behind:
<SolidColorBrush x:Key="BrushFFXXXXXX">#FF8D8A8A</SolidColorBrush>
myTextBox.Background = (Brush)Application.Current.MainWindow.FindResource("BrushFFXXXXXX");
(System.Windows.Media.Brush)Application.Current.FindResource("BrushFFXXXXX");
car votre application ne lèvera pas d'exception de thread si elle est mise à niveau pour utiliser plusieurs threads de répartiteur à l'avenir.
Je suppose que vous créez la TextBox en XAML?
Dans ce cas, vous devez donner un nom à la zone de texte. Ensuite, dans le code-behind, vous pouvez ensuite définir la propriété Background à l'aide de divers pinceaux. Le plus simple est le SolidColorBrush:
myTextBox.Background = new SolidColorBrush(Colors.White);
Vous pouvez convertir hexadécimal en RVB:
string ccode = "#00FFFF00";
int argb = Int32.Parse(ccode.Replace("#", ""), NumberStyles.HexNumber);
Color clr = Color.FromArgb(argb);
Vous pouvez utiliser des couleurs hexadécimales:
your_contorl.Color = DirectCast(ColorConverter.ConvertFromString("#D8E0A627"), Color)