InputManager Class

Manages all of the input systems in Windows Presentation Foundation (WPF).

Namespace: Microsoft.SPOT.Input
Assembly: Microsoft.SPOT.TinyCore (in microsoft.spot.tinycore.dll)

Syntax

public sealed class InputManager : DispatcherObject

Remarks

You use the InputManager class to coordinate all of the input systems in WPF, and also to control the input staging area.

The input staging area processes raw input into WPF events. Canceling the InputManager.DeviceEvents.PreProcessInput Event event will remove the input event from the staging area. The InputManager.DeviceEvents.PostProcessInput Event event exposes the staging area as a stack and enables items to be popped off or pushed on to the top of the staging area. A filter is any code routine that listens for the PreProcessInput event or the PostProcessInput event. A monitor is any code routine that listens for the PreNotifyInput event or the PostNotifyInput event. Note that filters can modify the input staging area, whereas monitors cannot.

Version Information

Available in the .NET Micro Framework versions 2.0, 2.5, 3.0, 4.0, and 4.1.

See Also

Reference

InputManager Members
Microsoft.SPOT.Input Namespace