2 types derived from HwndHost
PresentationFramework (1)
System\Windows\Interop\ActiveXHost.cs (1)
49
public class ActiveXHost :
HwndHost
WindowsFormsIntegration (1)
System\Windows\Integration\WindowsFormsHost.cs (1)
34
public class WindowsFormsHost :
HwndHost
, IKeyboardInputSink
13 references to HwndHost
PresentationFramework (13)
System\Windows\Automation\Peers\HwndHostAutomationPeer.cs (3)
13
public HwndHostAutomationPeer(
HwndHost
owner): base(owner)
36
HwndHost
host = (
HwndHost
)Owner;
System\Windows\Input\KeyboardNavigation.cs (1)
1203
if(sourceElement is
HwndHost
)
System\Windows\Interop\HwndHost.cs (9)
26
FocusableProperty.OverrideMetadata(typeof(
HwndHost
), new FrameworkPropertyMetadata(true));
27
HwndHost
.DpiChangedEvent = Window.DpiChangedEvent.AddOwner(typeof(
HwndHost
));
117
add { AddHandler(
HwndHost
.DpiChangedEvent, value); }
118
remove { RemoveHandler(
HwndHost
.DpiChangedEvent, value); }
156
RaiseEvent(new DpiChangedEventArgs(oldDpi, newDpi,
HwndHost
.DpiChangedEvent, this));
1153
public WeakEventDispatcherShutdown(
HwndHost
hwndHost, Dispatcher that): base(hwndHost)
1161
HwndHost
hwndHost = this.Target as
HwndHost
;