20 references to WindowInteractionState
PresentationCore (2)
MS\Internal\Automation\WindowProviderWrapper.cs (2)
105public WindowInteractionState InteractionState 109return (WindowInteractionState) ElementUtil.Invoke( _peer, new DispatcherOperationCallback( GetInteractionState ), null );
UIAutomationClient (17)
MS\Internal\Automation\HwndProxyElementProvider.cs (7)
560WindowInteractionState IWindowProvider.InteractionState 579return WindowInteractionState.NotResponding; 581return WindowInteractionState.Closing; 587return WindowInteractionState.Closing; 595return WindowInteractionState.BlockedByModalWindow; 597return WindowInteractionState.Running; 600return 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)
96if (!(windowInteractionState is WindowInteractionState)) 101WindowInteractionState state = (WindowInteractionState)windowInteractionState; 111hwnd == _lastHwnd ? _lastState : WindowInteractionState.Running, 132private WindowInteractionState _lastState; // keep track of last interaction state
System\Windows\Automation\WindowPattern.cs (2)
301public WindowInteractionState WindowInteractionState 305return (WindowInteractionState)_el.GetPatternPropertyValue(WindowInteractionStateProperty, _useCache);
UIAutomationProvider (1)
System\Windows\Automation\Provider\IWindowProvider.cs (1)
90WindowInteractionState InteractionState