C# Class DroidExplorer.Core.UI.CConsole.KeyMapping

A KeyMapping defines how a key combination should be mapped to a SendKeys message.
Mostrar archivo Open project: camalot/droidexplorer

Public Methods

Method Description
KeyMapping ( ) : System

Initializes a new instance of the KeyMapping class.

KeyMapping ( bool control, bool alt, bool shift, Keys keyCode, string sendKeysMapping, string streamMapping ) : System

Initializes a new instance of the KeyMapping class.

Method Details

KeyMapping() public method

Initializes a new instance of the KeyMapping class.
public KeyMapping ( ) : System
return System

KeyMapping() public method

Initializes a new instance of the KeyMapping class.
public KeyMapping ( bool control, bool alt, bool shift, Keys keyCode, string sendKeysMapping, string streamMapping ) : System
control bool if set to true [control].
alt bool if set to true [alt].
shift bool if set to true [shift].
keyCode Keys The key code.
sendKeysMapping string The send keys mapping.
streamMapping string The stream mapping.
return System