1 type derived from ActiveXHost
PresentationFramework (1)
src\Framework\System\Windows\Controls\WebBrowser.cs (1)
80public sealed class WebBrowser : ActiveXHost
25 references to ActiveXHost
PresentationFramework (25)
src\Framework\MS\Internal\Controls\ActiveXContainer.cs (8)
42internal ActiveXContainer(ActiveXHost host) 263internal void OnUIActivate(ActiveXHost site) 276ActiveXHost tempSite = _siteUIActive; 290internal void OnUIDeactivate(ActiveXHost site) 311internal void OnInPlaceDeactivate(ActiveXHost site) 331internal ActiveXHost ActiveXHost 350private ActiveXHost _host; 357private ActiveXHost _siteUIActive;
src\Framework\MS\Internal\Controls\ActiveXSite.cs (3)
56internal ActiveXSite(ActiveXHost host) 489internal ActiveXHost Host 580private ActiveXHost _host;
src\Framework\System\Windows\Interop\ActiveXHost.cs (14)
89EventManager.RegisterClassHandler(typeof(ActiveXHost), AccessKeyManager.AccessKeyPressedEvent, new AccessKeyPressedEventHandler(OnAccessKeyPressed)); 91Control.IsTabStopProperty.OverrideMetadata(typeof(ActiveXHost), new FrameworkPropertyMetadata(true)); 93FocusableProperty.OverrideMetadata(typeof(ActiveXHost), new FrameworkPropertyMetadata(true)); 95EventManager.RegisterClassHandler(typeof(ActiveXHost), Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGotFocus)); 96EventManager.RegisterClassHandler(typeof(ActiveXHost), Keyboard.LostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnLostFocus)); 97KeyboardNavigation.TabNavigationProperty.OverrideMetadata(typeof(ActiveXHost), new FrameworkPropertyMetadata(KeyboardNavigationMode.Once)); 867= Control.TabIndexProperty.AddOwner(typeof(ActiveXHost)); 992private static void OnIsEnabledInvalidated(ActiveXHost axHost) 1001private static void OnVisibilityInvalidated(ActiveXHost axHost) 1026ActiveXHost axhost = sender as ActiveXHost; 1042ActiveXHost axhost = sender as ActiveXHost; 1195private delegate void PropertyInvalidator(ActiveXHost axhost);