web-dev-qa-db-fra.com

Définir la couleur d'arrière-plan de la zone de texte WPF en code C #

Comment modifier les couleurs d'arrière-plan et de premier plan d'une zone de texte WPF par programme en C #?

168
Sauron
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;
312
Timbo

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");
96
Danield

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);
22
James Hay

Vous pouvez convertir hex en RVB:

string ccode = "#00FFFF00";
int argb = Int32.Parse(ccode.Replace("#", ""), NumberStyles.HexNumber);
Color clr = Color.FromArgb(argb);
6

Vous pouvez utiliser des couleurs hexagonales:

your_contorl.Color = DirectCast(ColorConverter.ConvertFromString("#D8E0A627"), Color)
5

Avez-vous jeté un œil à Color.FromRgb?

3
Daniel