Пример #1
0
 public EditWindow(int f)
 {
     Cards   = new List <StudentCard>();
     current = this;
     InitializeComponent();
     this.filiere = f;
 }
Пример #2
0
        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();
        }