20 references to WindowInteractionState
PresentationCore (2)
MS\Internal\Automation\WindowProviderWrapper.cs (2)
105
public
WindowInteractionState
InteractionState
109
return (
WindowInteractionState
) ElementUtil.Invoke( _peer, new DispatcherOperationCallback( GetInteractionState ), null );
UIAutomationClient (17)
MS\Internal\Automation\HwndProxyElementProvider.cs (7)
560
WindowInteractionState
IWindowProvider.InteractionState
579
return
WindowInteractionState
.NotResponding;
581
return
WindowInteractionState
.Closing;
587
return
WindowInteractionState
.Closing;
595
return
WindowInteractionState
.BlockedByModalWindow;
597
return
WindowInteractionState
.Running;
600
return
WindowInteractionState
.ReadyForUserInteraction;
MS\Internal\Automation\Schema.cs (3)
134
private static object ConvertToWindowInteractionState(object value) { return (
WindowInteractionState
)value; }
358
new AutomationPropertyInfo( convertToWindowInteractionState, WindowPattern.WindowInteractionStateProperty, typeof(
WindowInteractionState
),
WindowInteractionState
.Running ),
MS\Internal\Automation\WindowInteractionStateTracker.cs (5)
96
if (!(windowInteractionState is
WindowInteractionState
))
101
WindowInteractionState
state = (
WindowInteractionState
)windowInteractionState;
111
hwnd == _lastHwnd ? _lastState :
WindowInteractionState
.Running,
132
private
WindowInteractionState
_lastState; // keep track of last interaction state
System\Windows\Automation\WindowPattern.cs (2)
301
public
WindowInteractionState
WindowInteractionState
305
return (
WindowInteractionState
)_el.GetPatternPropertyValue(WindowInteractionStateProperty, _useCache);
UIAutomationProvider (1)
System\Windows\Automation\Provider\IWindowProvider.cs (1)
90
WindowInteractionState
InteractionState