コード例 #1
0
ファイル: HistoryPage.xaml.cs プロジェクト: netcharm/PixivWPF
 public void NextIllust()
 {
     if (this is HistoryPage && HistoryItems.ItemsCount > 0)
     {
         if (HistoryItems.IsCurrentLast)
         {
             HistoryItems.MoveCurrentToFirst();
         }
         else
         {
             HistoryItems.MoveCurrentToNext();
         }
         HistoryItems.ScrollIntoView(HistoryItems.SelectedItem);
     }
 }
コード例 #2
0
ファイル: HistoryPage.xaml.cs プロジェクト: netcharm/PixivWPF
 public void FirstIllust()
 {
     HistoryItems.MoveCurrentToFirst();
     HistoryItems.ScrollIntoView(HistoryItems.SelectedItem);
 }