public void NextIllust() { if (this is HistoryPage && HistoryItems.ItemsCount > 0) { if (HistoryItems.IsCurrentLast) { HistoryItems.MoveCurrentToFirst(); } else { HistoryItems.MoveCurrentToNext(); } HistoryItems.ScrollIntoView(HistoryItems.SelectedItem); } }
public void FirstIllust() { HistoryItems.MoveCurrentToFirst(); HistoryItems.ScrollIntoView(HistoryItems.SelectedItem); }