Interaction logic for StudentView.xaml
상속: System.Windows.Window
예제 #1
0
        private void lvStudents_MouseDoubleClick(object sender, MouseButtonEventArgs e)
        {
            Student selectedStudent = (Student)lvStudents.SelectedItem;

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

            StudentView window = new StudentView(selectedStudent);

            window.ShowDialog();
        }