2 instantiations of StagingAreaInputItem
PresentationCore (2)
System\Windows\Input\InputManager.cs (2)
549
StagingAreaInputItem item = new
StagingAreaInputItem
(false);
557
StagingAreaInputItem item = new
StagingAreaInputItem
(true);
38 references to StagingAreaInputItem
PresentationCore (38)
System\Windows\Input\InputManager.cs (12)
541
internal
StagingAreaInputItem
PushInput(
StagingAreaInputItem
inputItem)
547
internal
StagingAreaInputItem
PushInput(InputEventArgs input,
StagingAreaInputItem
promote)
549
StagingAreaInputItem
item = new StagingAreaInputItem(false);
555
internal
StagingAreaInputItem
PushMarker()
557
StagingAreaInputItem
item = new StagingAreaInputItem(true);
562
internal
StagingAreaInputItem
PopInput()
571
return input as
StagingAreaInputItem
;
575
internal
StagingAreaInputItem
PeekInput()
584
return input as
StagingAreaInputItem
;
672
StagingAreaInputItem
item = null;
System\Windows\Input\MouseDevice.cs (1)
2205
private StylusDevice GetStylusDevice(
StagingAreaInputItem
stagingItem)
System\Windows\Input\NotifyInputEventArgs.cs (3)
28
internal virtual void Reset(
StagingAreaInputItem
input, InputManager inputManager)
38
public
StagingAreaInputItem
StagingItem {get {return _input;}}
63
private
StagingAreaInputItem
_input;
System\Windows\Input\PreProcessInputEventArgs.cs (1)
28
internal override void Reset(
StagingAreaInputItem
input, InputManager inputManager)
System\Windows\Input\ProcessInputEventArgs.cs (7)
33
internal override void Reset(
StagingAreaInputItem
input, InputManager inputManager)
52
public
StagingAreaInputItem
PushInput(InputEventArgs input,
53
StagingAreaInputItem
promote) // Note: this should be a bool, and always use the InputItem available on these args.
73
public
StagingAreaInputItem
PushInput(
StagingAreaInputItem
input)
90
public
StagingAreaInputItem
PopInput()
108
public
StagingAreaInputItem
PeekInput()
System\Windows\Input\StagingAreaInputItem.cs (1)
29
internal void Reset(InputEventArgs input,
StagingAreaInputItem
promote)
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (3)
1160
private void PromoteMainDownToTouch(PointerStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
1177
private void PromoteMainMoveToTouch(PointerStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
1190
private void PromoteMainUpToTouch(PointerStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
System\Windows\Input\Stylus\Wisp\WispLogic.cs (10)
1465
StagingAreaInputItem
stagingItem = e.StagingItem;
1559
private void PromoteMainDownToTouch(WispStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
1582
private void PromoteMainMoveToTouch(WispStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
1617
private void PromoteMainUpToTouch(WispStylusDevice stylusDevice,
StagingAreaInputItem
stagingItem)
1668
StagingAreaInputItem
[] storedItems = new
StagingAreaInputItem
[count];
1683
StagingAreaInputItem
stagingItem = storedItems[i];
1723
private void PromoteMainToMouse(
StagingAreaInputItem
stagingItem)
3641
internal class StagingAreaInputItemList : List<
StagingAreaInputItem
>
3643
internal void AddItem(
StagingAreaInputItem
item)