2 instantiations of StagingAreaInputItem
PresentationCore (2)
System\Windows\Input\InputManager.cs (2)
541
StagingAreaInputItem item = new
StagingAreaInputItem
(false);
549
StagingAreaInputItem item = new
StagingAreaInputItem
(true);
38 references to StagingAreaInputItem
PresentationCore (38)
System\Windows\Input\InputManager.cs (12)
533
internal
StagingAreaInputItem
PushInput(
StagingAreaInputItem
inputItem)
539
internal
StagingAreaInputItem
PushInput(InputEventArgs input,
StagingAreaInputItem
promote)
541
StagingAreaInputItem
item = new StagingAreaInputItem(false);
547
internal
StagingAreaInputItem
PushMarker()
549
StagingAreaInputItem
item = new StagingAreaInputItem(true);
554
internal
StagingAreaInputItem
PopInput()
563
return input as
StagingAreaInputItem
;
567
internal
StagingAreaInputItem
PeekInput()
576
return input as
StagingAreaInputItem
;
664
StagingAreaInputItem
item = null;
System\Windows\Input\MouseDevice.cs (1)
2228
private StylusDevice GetStylusDevice(
StagingAreaInputItem
stagingItem)
System\Windows\Input\NotifyInputEventArgs.cs (3)
22
internal virtual void Reset(
StagingAreaInputItem
input, InputManager inputManager)
32
public
StagingAreaInputItem
StagingItem {get {return _input;}}
57
private
StagingAreaInputItem
_input;
System\Windows\Input\PreProcessInputEventArgs.cs (1)
24
internal override void Reset(
StagingAreaInputItem
input, InputManager inputManager)
System\Windows\Input\ProcessInputEventArgs.cs (7)
27
internal override void Reset(
StagingAreaInputItem
input, InputManager inputManager)
46
public
StagingAreaInputItem
PushInput(InputEventArgs input,
47
StagingAreaInputItem
promote) // Note: this should be a bool, and always use the InputItem available on these args.
67
public
StagingAreaInputItem
PushInput(
StagingAreaInputItem
input)
84
public
StagingAreaInputItem
PopInput()
102
public
StagingAreaInputItem
PeekInput()
System\Windows\Input\StagingAreaInputItem.cs (1)
27
internal void Reset(InputEventArgs input,
StagingAreaInputItem
promote)
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (3)
1145
private void PromoteMainDownToTouch(PointerStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
1162
private void PromoteMainMoveToTouch(PointerStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
1175
private void PromoteMainUpToTouch(PointerStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
System\Windows\Input\Stylus\Wisp\WispLogic.cs (10)
1467
StagingAreaInputItem
stagingItem = e.StagingItem;
1561
private void PromoteMainDownToTouch(WispStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
1584
private void PromoteMainMoveToTouch(WispStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
1619
private void PromoteMainUpToTouch(WispStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
1670
StagingAreaInputItem
[] storedItems = new
StagingAreaInputItem
[count];
1685
StagingAreaInputItem
stagingItem = storedItems[i];
1725
private void PromoteMainToMouse(
StagingAreaInputItem
stagingItem)
3655
internal class StagingAreaInputItemList : List<
StagingAreaInputItem
>
3657
internal void AddItem(
StagingAreaInputItem
item)