Axiom.Input.KeyEventArgs.KeyEventArgs C# (CSharp) 메소드

KeyEventArgs() 공개 메소드

Constructor.
public KeyEventArgs ( KeyCodes key, ModifierKeys modifiers ) : System
key KeyCodes Key that was pressed.
modifiers ModifierKeys Modifier keys pressed at the time of the event.
리턴 System
		public KeyEventArgs( KeyCodes key, ModifierKeys modifiers )
			: base( modifiers )
		{
			this.key = key;
		}
KeyEventArgs