2 instantiations of StagingAreaInputItem
PresentationCore (2)
System\Windows\Input\InputManager.cs (2)
537
StagingAreaInputItem item = new
StagingAreaInputItem
(false);
545
StagingAreaInputItem item = new
StagingAreaInputItem
(true);
38 references to StagingAreaInputItem
PresentationCore (38)
System\Windows\Input\InputManager.cs (12)
529
internal
StagingAreaInputItem
PushInput(
StagingAreaInputItem
inputItem)
535
internal
StagingAreaInputItem
PushInput(InputEventArgs input,
StagingAreaInputItem
promote)
537
StagingAreaInputItem
item = new StagingAreaInputItem(false);
543
internal
StagingAreaInputItem
PushMarker()
545
StagingAreaInputItem
item = new StagingAreaInputItem(true);
550
internal
StagingAreaInputItem
PopInput()
559
return input as
StagingAreaInputItem
;
563
internal
StagingAreaInputItem
PeekInput()
572
return input as
StagingAreaInputItem
;
660
StagingAreaInputItem
item = null;
System\Windows\Input\MouseDevice.cs (1)
2227
private StylusDevice GetStylusDevice(
StagingAreaInputItem
stagingItem)
System\Windows\Input\NotifyInputEventArgs.cs (3)
21
internal virtual void Reset(
StagingAreaInputItem
input, InputManager inputManager)
31
public
StagingAreaInputItem
StagingItem {get {return _input;}}
56
private
StagingAreaInputItem
_input;
System\Windows\Input\PreProcessInputEventArgs.cs (1)
23
internal override void Reset(
StagingAreaInputItem
input, InputManager inputManager)
System\Windows\Input\ProcessInputEventArgs.cs (7)
26
internal override void Reset(
StagingAreaInputItem
input, InputManager inputManager)
45
public
StagingAreaInputItem
PushInput(InputEventArgs input,
46
StagingAreaInputItem
promote) // Note: this should be a bool, and always use the InputItem available on these args.
66
public
StagingAreaInputItem
PushInput(
StagingAreaInputItem
input)
83
public
StagingAreaInputItem
PopInput()
101
public
StagingAreaInputItem
PeekInput()
System\Windows\Input\StagingAreaInputItem.cs (1)
26
internal void Reset(InputEventArgs input,
StagingAreaInputItem
promote)
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (3)
1144
private void PromoteMainDownToTouch(PointerStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
1161
private void PromoteMainMoveToTouch(PointerStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
1174
private void PromoteMainUpToTouch(PointerStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
System\Windows\Input\Stylus\Wisp\WispLogic.cs (10)
1466
StagingAreaInputItem
stagingItem = e.StagingItem;
1560
private void PromoteMainDownToTouch(WispStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
1583
private void PromoteMainMoveToTouch(WispStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
1618
private void PromoteMainUpToTouch(WispStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
1669
StagingAreaInputItem
[] storedItems = new
StagingAreaInputItem
[count];
1684
StagingAreaInputItem
stagingItem = storedItems[i];
1724
private void PromoteMainToMouse(
StagingAreaInputItem
stagingItem)
3651
internal class StagingAreaInputItemList : List<
StagingAreaInputItem
>
3653
internal void AddItem(
StagingAreaInputItem
item)