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

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

            StudentView window = new StudentView(selectedStudent);

            window.ShowDialog();
        }