ARCed.Scintilla.KeyBinding.KeyBinding C# (CSharp) 메소드

KeyBinding() 공개 메소드

Initializes a new instance of the KeyBinding structure.
public KeyBinding ( Keys keycode, Keys modifiers ) : System.Windows.Forms
keycode Keys Key to trigger command
modifiers Keys key modifiers to the Keyboard shortcut
리턴 System.Windows.Forms
        public KeyBinding(Keys keycode, Keys modifiers)
        {
            this._keycode = keycode;
            this._modifiers = modifiers;
        }