예제 #1
0
파일: InputForm.cs 프로젝트: nectx/TouchIME
 protected override void OnFormClosing(FormClosingEventArgs e)
 {
     base.OnFormClosing(e);
     _input.StopTouchCapture();
     _input.TouchEnabled = false;
     _input.Dispose();
     _input = null;
     _keyboardManager.UninstallHook();
     _recognizer.Dispose();
 }