//============================= - - - - - - Evaluation objectif - - - - - ========================// private void evaclick(object sender, RoutedEventArgs e) { Evaluation win = new Evaluation(); SolidColorBrush redBrush; if (Client.couleur == "Taupe") { redBrush = (SolidColorBrush) new BrushConverter().ConvertFromString("BurlyWood"); } else if (Client.couleur == "Mauve") { redBrush = (SolidColorBrush) new BrushConverter().ConvertFromString("DarkMagenta"); } else if (Client.couleur == "Steel") { redBrush = (SolidColorBrush) new BrushConverter().ConvertFromString("LightGray"); } else if (Client.couleur == "Amber") { redBrush = (SolidColorBrush) new BrushConverter().ConvertFromString("Moccasin"); } else if (Client.couleur == "Cobalt") { redBrush = (SolidColorBrush) new BrushConverter().ConvertFromString("DarkBlue"); } else if (Client.couleur == "Emerald") { redBrush = (SolidColorBrush) new BrushConverter().ConvertFromString("DarkGreen"); } else { redBrush = (SolidColorBrush) new BrushConverter().ConvertFromString(Client.couleur); } win.colzone.Background = redBrush; win.nontrouvé.Background = redBrush; win.nontrouvé.BorderThickness = new Thickness(0); win.recherche.Background = redBrush; win.recherche.BorderThickness = new Thickness(0); win.retour.Background = redBrush; win.retour.BorderThickness = new Thickness(0); win.Show(); }
private void evaclick(object sender, RoutedEventArgs e) { Evaluation win = new Evaluation(); win.Show(); }