BoringHeroes.Interaction.KeyboardHook.KeyboardHook C# (CSharp) 메소드

KeyboardHook() 공개 메소드

public KeyboardHook ( ) : System
리턴 System
        public KeyboardHook()
        {
            // register the event of the inner native window.
            _window.KeyPressed += delegate(object sender, KeyPressedEventArgs args)
            {
                if (KeyPressed != null)
                    KeyPressed(this, args);
            };
        }