1 type derived from ActiveXHost
PresentationFramework (1)
System\Windows\Controls\WebBrowser.cs (1)
61public sealed class WebBrowser : ActiveXHost
25 references to ActiveXHost
PresentationFramework (25)
MS\Internal\Controls\ActiveXContainer.cs (8)
26internal ActiveXContainer(ActiveXHost host) 190internal void OnUIActivate(ActiveXHost site) 203ActiveXHost tempSite = _siteUIActive; 212internal void OnUIDeactivate(ActiveXHost site) 227internal void OnInPlaceDeactivate(ActiveXHost site) 244internal ActiveXHost ActiveXHost 258private ActiveXHost _host; 261private ActiveXHost _siteUIActive;
MS\Internal\Controls\ActiveXSite.cs (3)
33internal ActiveXSite(ActiveXHost host) 413internal ActiveXHost Host 480private ActiveXHost _host;
System\Windows\Interop\ActiveXHost.cs (14)
68EventManager.RegisterClassHandler(typeof(ActiveXHost), AccessKeyManager.AccessKeyPressedEvent, new AccessKeyPressedEventHandler(OnAccessKeyPressed)); 70Control.IsTabStopProperty.OverrideMetadata(typeof(ActiveXHost), new FrameworkPropertyMetadata(true)); 72FocusableProperty.OverrideMetadata(typeof(ActiveXHost), new FrameworkPropertyMetadata(true)); 74EventManager.RegisterClassHandler(typeof(ActiveXHost), Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGotFocus)); 75EventManager.RegisterClassHandler(typeof(ActiveXHost), Keyboard.LostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnLostFocus)); 76KeyboardNavigation.TabNavigationProperty.OverrideMetadata(typeof(ActiveXHost), new FrameworkPropertyMetadata(KeyboardNavigationMode.Once)); 738= Control.TabIndexProperty.AddOwner(typeof(ActiveXHost)); 842private static void OnIsEnabledInvalidated(ActiveXHost axHost) 851private static void OnVisibilityInvalidated(ActiveXHost axHost) 876ActiveXHost axhost = sender as ActiveXHost; 892ActiveXHost axhost = sender as ActiveXHost; 1029private delegate void PropertyInvalidator(ActiveXHost axhost);