private void Prev_OnClick(object sender, RoutedEventArgs e) { currentindex--; FIO f = coll.ElementAt(currentindex); FIOCaseRU.FIO fio = new FIOCaseRU.FIO(f.Surname, f.FirstName, f.Patronymic); gr.DataContext = fio; }
private void CheckNext() { currentindex++; FIO f = coll.ElementAt(currentindex); FIOCaseRU.FIO fio = new FIOCaseRU.FIO(f.Surname, f.FirstName, f.Patronymic); gr.DataContext = fio; }