20 references to WindowInteractionState
PresentationCore (2)
MS\Internal\Automation\WindowProviderWrapper.cs (2)
106public WindowInteractionState InteractionState 110return (WindowInteractionState) ElementUtil.Invoke( _peer, new DispatcherOperationCallback( GetInteractionState ), null );
UIAutomationClient (17)
MS\Internal\Automation\HwndProxyElementProvider.cs (7)
561WindowInteractionState IWindowProvider.InteractionState 580return WindowInteractionState.NotResponding; 582return WindowInteractionState.Closing; 588return WindowInteractionState.Closing; 596return WindowInteractionState.BlockedByModalWindow; 598return WindowInteractionState.Running; 601return WindowInteractionState.ReadyForUserInteraction;
MS\Internal\Automation\Schema.cs (3)
134private static object ConvertToWindowInteractionState(object value) { return (WindowInteractionState)value; } 358new AutomationPropertyInfo( convertToWindowInteractionState, WindowPattern.WindowInteractionStateProperty, typeof(WindowInteractionState),WindowInteractionState.Running ),
MS\Internal\Automation\WindowInteractionStateTracker.cs (5)
97if (!(windowInteractionState is WindowInteractionState)) 102WindowInteractionState state = (WindowInteractionState)windowInteractionState; 112hwnd == _lastHwnd ? _lastState : WindowInteractionState.Running, 133private WindowInteractionState _lastState; // keep track of last interaction state
System\Windows\Automation\WindowPattern.cs (2)
302public WindowInteractionState WindowInteractionState 306return (WindowInteractionState)_el.GetPatternPropertyValue(WindowInteractionStateProperty, _useCache);
UIAutomationProvider (1)
System\Windows\Automation\Provider\IWindowProvider.cs (1)
91WindowInteractionState InteractionState