예제 #1
0
 public LiteItem Next()
 {
     CurrentSelection.RollOff();
     CurrentSelectionIndex++;
     CurrentSelection.RollOver();
     return(CurrentSelection);
 }
예제 #2
0
 public LiteItem Prev()
 {
     CurrentSelection.RollOff();
     CurrentSelectionIndex--;
     CurrentSelection.RollOver();
     return(CurrentSelection);
 }
예제 #3
0
 public void Reset()
 {
     CurrentSelectionIndex = 0;
     CurrentSelection.RollOver();
 }