(menulist_s s)
| 4683 | } |
| 4684 | |
| 4685 | public static void SpinControl_DoEnter(menulist_s s) { |
| 4686 | s.curvalue++; |
| 4687 | if (s.itemnames[s.curvalue] == null) |
| 4688 | s.curvalue = 0; |
| 4689 | |
| 4690 | if (s.callback != null) |
| 4691 | s.callback.execute(s); |
| 4692 | } |
| 4693 | |
| 4694 | private static void SpinControl_DoSlide(menulist_s s, int dir) { |
| 4695 | s.curvalue += dir; |