20 references to WindowInteractionState
PresentationCore (2)
MS\Internal\Automation\WindowProviderWrapper.cs (2)
106
public
WindowInteractionState
InteractionState
110
return (
WindowInteractionState
) ElementUtil.Invoke( _peer, new DispatcherOperationCallback( GetInteractionState ), null );
UIAutomationClient (17)
MS\Internal\Automation\HwndProxyElementProvider.cs (7)
561
WindowInteractionState
IWindowProvider.InteractionState
580
return
WindowInteractionState
.NotResponding;
582
return
WindowInteractionState
.Closing;
588
return
WindowInteractionState
.Closing;
596
return
WindowInteractionState
.BlockedByModalWindow;
598
return
WindowInteractionState
.Running;
601
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)
97
if (!(windowInteractionState is
WindowInteractionState
))
102
WindowInteractionState
state = (
WindowInteractionState
)windowInteractionState;
112
hwnd == _lastHwnd ? _lastState :
WindowInteractionState
.Running,
133
private
WindowInteractionState
_lastState; // keep track of last interaction state
System\Windows\Automation\WindowPattern.cs (2)
302
public
WindowInteractionState
WindowInteractionState
306
return (
WindowInteractionState
)_el.GetPatternPropertyValue(WindowInteractionStateProperty, _useCache);
UIAutomationProvider (1)
System\Windows\Automation\Provider\IWindowProvider.cs (1)
91
WindowInteractionState
InteractionState