Comment modifier les couleurs d'arrière-plan et de premier plan d'une zone de texte WPF par programme en C #?
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 celle-ci:
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;
Si vous souhaitez définir l’arrière-plan avec une couleur hexadécimale, vous pouvez procéder comme suit:
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");
Je suppose que vous créez la zone de texte en XAML?
Dans ce cas, vous devez attribuer un nom à la zone de texte. Ensuite, dans le code-behind, vous pouvez 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 hex en RVB:
string ccode = "#00FFFF00";
int argb = Int32.Parse(ccode.Replace("#", ""), NumberStyles.HexNumber);
Color clr = Color.FromArgb(argb);
Vous pouvez utiliser des couleurs hexagonales:
your_contorl.Color = DirectCast(ColorConverter.ConvertFromString("#D8E0A627"), Color)
Avez-vous jeté un œil à Color.FromRgb
?