Interaction logic for StudentView.xaml
Inheritance: System.Windows.Window
Ejemplo n.º 1
0
        private void lvStudents_MouseDoubleClick(object sender, MouseButtonEventArgs e)
        {
            Student selectedStudent = (Student)lvStudents.SelectedItem;

            StudentView window = new StudentView(selectedStudent);
            window.ShowDialog();
        }
Ejemplo n.º 2
0
        private void lvStudents_MouseDoubleClick(object sender, MouseButtonEventArgs e)
        {
            Student selectedStudent = (Student)lvStudents.SelectedItem;

            StudentView window = new StudentView(selectedStudent);

            window.ShowDialog();
        }