Example #1
0
        private void lvListStudent_MouseDoubleClick(object sender, System.Windows.Input.MouseButtonEventArgs e)
        {
            ListViewSearchStudent lv = lvListStudent.SelectedItem as ListViewSearchStudent;

            txtLastName.Text  = lv.LastName;
            txtFirstName.Text = lv.FirstName;
        }
Example #2
0
 public SearchStudent()
 {
     InitializeComponent();
     updateSY();
     time.Content = DateTime.Now.ToString("G");
     startTimer();
     DataContext = ListViewSearchStudent.getList();
 }