public EditWindow(int f) { Cards = new List <StudentCard>(); current = this; InitializeComponent(); this.filiere = f; }
private void ButtonEdit_Click(object sender, RoutedEventArgs e) { //ButtonEdit.Background = new SolidColorBrush(Color.FromRgb(32, 0, 255)); EditWindow edit = new EditWindow(filiere); clearView(); edit.Show(); this.Hide(); }