ReleaseActiveKeyboard() 공개 메소드

Releases the active keyboard
public ReleaseActiveKeyboard ( bool save = false ) : void
save bool Whether to save the LastKeyboard (making it null)
리턴 void
예제 #1
0
        public void Stop()
        {
            if (!Running)
            {
                return;
            }

            _logger.Debug("Stopping LoopManager");
            Running = false;

            _deviceManager.ReleaseActiveKeyboard();
        }
예제 #2
0
        public void Stop()
        {
            if (!Running)
            {
                return;
            }

            _logger.Debug("Stopping LoopManager");
            Running = false;

            _deviceManager.ReleaseActiveKeyboard();
            _keyboardBitmap?.Dispose();
            _keyboardBitmap = null;
        }