1 type derived from ActiveXHost
PresentationFramework (1)
System\Windows\Controls\WebBrowser.cs (1)
60public sealed class WebBrowser : ActiveXHost
25 references to ActiveXHost
PresentationFramework (25)
MS\Internal\Controls\ActiveXContainer.cs (8)
25internal ActiveXContainer(ActiveXHost host) 188internal void OnUIActivate(ActiveXHost site) 201ActiveXHost tempSite = _siteUIActive; 210internal void OnUIDeactivate(ActiveXHost site) 225internal void OnInPlaceDeactivate(ActiveXHost site) 242internal ActiveXHost ActiveXHost 256private ActiveXHost _host; 259private ActiveXHost _siteUIActive;
MS\Internal\Controls\ActiveXSite.cs (3)
32internal ActiveXSite(ActiveXHost host) 412internal ActiveXHost Host 479private ActiveXHost _host;
System\Windows\Interop\ActiveXHost.cs (14)
67EventManager.RegisterClassHandler(typeof(ActiveXHost), AccessKeyManager.AccessKeyPressedEvent, new AccessKeyPressedEventHandler(OnAccessKeyPressed)); 69Control.IsTabStopProperty.OverrideMetadata(typeof(ActiveXHost), new FrameworkPropertyMetadata(true)); 71FocusableProperty.OverrideMetadata(typeof(ActiveXHost), new FrameworkPropertyMetadata(true)); 73EventManager.RegisterClassHandler(typeof(ActiveXHost), Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGotFocus)); 74EventManager.RegisterClassHandler(typeof(ActiveXHost), Keyboard.LostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnLostFocus)); 75KeyboardNavigation.TabNavigationProperty.OverrideMetadata(typeof(ActiveXHost), new FrameworkPropertyMetadata(KeyboardNavigationMode.Once)); 734= Control.TabIndexProperty.AddOwner(typeof(ActiveXHost)); 838private static void OnIsEnabledInvalidated(ActiveXHost axHost) 847private static void OnVisibilityInvalidated(ActiveXHost axHost) 872ActiveXHost axhost = sender as ActiveXHost; 888ActiveXHost axhost = sender as ActiveXHost; 1025private delegate void PropertyInvalidator(ActiveXHost axhost);