コード例 #1
0
        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;
        }
コード例 #2
0
        private void CheckNext()
        {
            currentindex++;
            FIO f = coll.ElementAt(currentindex);

            FIOCaseRU.FIO fio = new FIOCaseRU.FIO(f.Surname, f.FirstName, f.Patronymic);

            gr.DataContext = fio;
        }