Example #1
0
 private static void CharacterCaptured_Event(object sender, SingleFieldEventClass <char> e)
 {         // triggered by event form for the WM_User+104 message notifying characters for word prediction
     _CharacterTyped?.Invoke(null, e);
 }
Example #2
0
 private void m_Engine_Iterate(object sender, SingleFieldEventClass <int> direction)
 {
     EventTime = Environment.TickCount;
     EventText = direction < 0 ? "Back" : "Iterate";
 }
Example #3
0
 private void m_Engine_Iterate(object sender, SingleFieldEventClass <int> direction)
 {
     m_Highlight = (m_Highlight + direction) % 10;
     Invalidate();
 }