Пример #1
0
 private void onCursorEvent(CursorCommandCodes CursorCommand, int Row, int Col)
 {
     if (CursorEvent != null)
     {
         CursorEventArgs e = new CursorEventArgs();
         e.CursorCommand = CursorCommand;
         e.Row           = Row;
         e.Col           = Col;
         CursorEvent(this, e);
     }
 }
Пример #2
0
 public void CursorAction(CursorCommandCodes Command, int Row, int Col)
 {
     throw new NotImplementedException();
 }
Пример #3
0
 private void onCursorEvent(CursorCommandCodes CursorCommand)
 {
     onCursorEvent(CursorCommand, 0, 0);
 }