C# Class NewTOAPIA.UI.KeyboardEvent

KeyboardDevice events represent keyboard activity. The event can be a KeyDown, KeyUp, or KeyChar. The down and up events report the raw virtual key code that is being pressed and released. The KeyChar event type represents an actual key once it has been translated by the system.
Inheritance: System.EventArgs
显示文件 Open project: Wiladams/NewTOAPIA

Public Methods

Method Description
KeyboardEvent ( KeyboardDevice keyboard, KeyEventType eventType, VirtualKeyCodes keyData, int aKeyFlags, char aChar ) : System

Method Details

KeyboardEvent() public method

public KeyboardEvent ( KeyboardDevice keyboard, KeyEventType eventType, VirtualKeyCodes keyData, int aKeyFlags, char aChar ) : System
keyboard KeyboardDevice
eventType KeyEventType
keyData VirtualKeyCodes
aKeyFlags int
aChar char
return System