HwndSource Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Presents Windows Presentation Foundation (WPF) content in a Win32 window.
public ref class HwndSource : System::Windows::PresentationSource, IDisposable, System::Windows::Interop::IKeyboardInputSink, System::Windows::Interop::IWin32Window
public class HwndSource : System.Windows.PresentationSource, IDisposable, System.Windows.Interop.IKeyboardInputSink, System.Windows.Interop.IWin32Window
type HwndSource = class
inherit PresentationSource
interface IDisposable
interface IWin32Window
interface IKeyboardInputSink
type HwndSource = class
inherit PresentationSource
interface IDisposable
interface IKeyboardInputSink
interface IWin32Window
Public Class HwndSource
Inherits PresentationSource
Implements IDisposable, IKeyboardInputSink, IWin32Window
- Inheritance
- Implements
Remarks
Important
Many members of this class are unavailable in the Internet security zone.
An HwndSource implements a Win32 window that can contain WPF content. The WPF content in the window is arranged, measured, and rendered; and is interactive to input. Because the HwndSource is specifically designed to interoperate with Win32, this class exposes several low-level Win32 features. You can use this class to do the following:
Specify window styles, window class styles, and extended window styles.
Hook the window procedure.
Provide access to the window handle (HWND).
Destroy the window.
The HwndSource class is designed for general interoperability and is not designed as a managed HWND wrapper. In general, it does not provide managed methods for manipulating the window or properties for inspecting its state. Instead, the HwndSource class provides access to the Win32 window handle (HWND) through the Handle property, which can be passed by means of PInvoke techniques to Win32 APIs in order to manipulate the window.
Construction
Many aspects of the HwndSource can only be specified at construction time. To create an HwndSource, first create an HwndSourceParameters structure and populate it with the desired parameters. These parameters include the following:
The class, window, and extended window styles. You must use PInvoke to change the styles after the window is created. Not all styles can be changed after the window is created. Consult the Win32 documentation before changing window styles.
The initial position of the window.
The initial size of the window, which includes whether the size is specified or should be determined from the determined size of the WPF content.
The parent window.
The HwndSourceHook to include in the window procedure chain. If you specify a hook at construction time, it receives all messages for the window. You can use AddHook to add a hook after the window is created.
The transparency settings. A top-level window can be configured to blend with the other windows on the desktop according to the per-pixel transparency of the WPF content. To enable this, set the UsesPerPixelOpacity property in the HwndSourceParameters to
true
. This property can only be specified at construction time, and only through the HwndSource(HwndSourceParameters) constructor signature, and it imposes several limitations.
After you populate the HwndSourceParameters structure, pass it to the HwndSource(HwndSourceParameters) constructor for the HwndSource.
Object Lifetime
An HwndSource is a regular common language runtime (CLR) object, and its lifetime is managed by the garbage collector. Because the HwndSource represents an unmanaged resource, HwndSource implements IDisposable. Synchronously calling Dispose immediately destroys the Win32 window if called from the owner thread. If called from another thread, the Win32 window is destroyed asynchronously. Calling Dispose explicitly from the interoperating code might be necessary for certain interoperation scenarios.
Window Procedures
The HwndSource class implements its own window procedure. This window procedure is used to process important window messages, such as those related to layout, rendering, and input. However, you can also hook the window procedure for your own use. You can specify your own hook during construction by setting the HwndSourceParameters.HwndSourceHook property, or you can also use AddHook and RemoveHook to add and remove hooks after the window is created. The hooks are called by last-in first-out order, which enables your hooks to execute before the built-in processing. The actual hooks are held by a weak reference. Therefore, make sure that you manage the lifetime of your hook delegate.
For more information about HwndSource and other interoperation classes, see WPF and Win32 Interoperation.
Notice how the constructors for HwndSource take parameters that resemble the parameters for Win32 functions such as CreateWindowEx.
Scale transformations should not be applied to the RootVisual of an HwndSource. See Remarks for RootVisual.
Constructors
HwndSource(HwndSourceParameters) |
Initializes a new instance of the HwndSource class by using a structure that contains the initial settings. |
HwndSource(Int32, Int32, Int32, Int32, Int32, Int32, Int32, String, IntPtr) |
Initializes a new instance of the HwndSource class with a specified class style, style, extended style, x-y position, width, height, name, and parent window. |
HwndSource(Int32, Int32, Int32, Int32, Int32, Int32, Int32, String, IntPtr, Boolean) |
Initializes a new instance of the HwndSource class with a specified class style, style, extended style, x-y position, width, height, name, and parent window, and by specifying whether the window is autosized. |
HwndSource(Int32, Int32, Int32, Int32, Int32, String, IntPtr) |
Initializes a new instance of the HwndSource class with a specified class style, style, extended style, x-y position, name, and parent window. |
Properties
AcquireHwndFocusInMenuMode |
Gets the value that determines whether to acquire Win32 focus for the WPF containing window for this HwndSource. |
ChildKeyboardInputSinks |
Gets a sequence of registered input sinks. |
CompositionTarget |
Gets the visual manager for the hosted window. |
DefaultAcquireHwndFocusInMenuMode |
Gets or sets the default AcquireHwndFocusInMenuMode value for new instances of HwndSource. |
Dispatcher |
Gets the Dispatcher this DispatcherObject is associated with. (Inherited from DispatcherObject) |
Handle |
Gets the window handle for this HwndSource. |
IsDisposed |
Gets a value that indicates whether Dispose() has been called on this HwndSource. |
KeyboardInputSiteCore |
Gets or sets a reference to the component's container's IKeyboardInputSite interface. |
RestoreFocusMode |
Gets the RestoreFocusMode for the window. |
RootVisual |
Gets or sets the RootVisual of the window. |
SizeToContent |
Get or sets whether and how the window is sized to its content. |
UsesPerPixelOpacity |
Gets a value that declares whether the per-pixel opacity of the source window content is respected. |
Methods
AddHook(HwndSourceHook) |
Adds an event handler that receives all window messages. |
AddSource() |
Adds a PresentationSource derived class instance to the list of known presentation sources. (Inherited from PresentationSource) |
CheckAccess() |
Determines whether the calling thread has access to this DispatcherObject. (Inherited from DispatcherObject) |
ClearContentRenderedListeners() |
Sets the list of listeners for the ContentRendered event to |
CreateHandleRef() |
Gets the window handle for the HwndSource. The window handle is packaged as part of a HandleRef structure. |
Dispose() |
Releases all managed resources that are used by the HwndSource, and raises the Disposed event. |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
FromHwnd(IntPtr) |
Returns the HwndSource object of the specified window. |
GetCompositionTargetCore() |
Gets the visual target of the window. |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
HasFocusWithinCore() |
Gets a value that indicates whether the sink or one of its contained components has focus. |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
OnDpiChanged(HwndDpiChangedEventArgs) |
Called when the DPI is going to change for the window. |
OnMnemonicCore(MSG, ModifierKeys) |
Called when one of the mnemonics (access keys) for this sink is invoked. |
RegisterKeyboardInputSinkCore(IKeyboardInputSink) |
Registers the IKeyboardInputSink interface of a contained component. |
RemoveHook(HwndSourceHook) |
Removes the event handlers that were added by AddHook(HwndSourceHook). |
RemoveSource() |
Removes a PresentationSource derived class instance from the list of known presentation sources. (Inherited from PresentationSource) |
RootChanged(Visual, Visual) |
Provides notification that the root Visual has changed. (Inherited from PresentationSource) |
TabIntoCore(TraversalRequest) |
Sets focus on either the first tab stop or the last tab stop of the sink. |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |
TranslateAcceleratorCore(MSG, ModifierKeys) |
Processes keyboard input at the key-down message level. |
TranslateCharCore(MSG, ModifierKeys) |
Processes WM_CHAR, WM_SYSCHAR, WM_DEADCHAR, and WM_SYSDEADCHAR input messages before the OnMnemonic(MSG, ModifierKeys) method is called. |
VerifyAccess() |
Enforces that the calling thread has access to this DispatcherObject. (Inherited from DispatcherObject) |
Events
AutoResized |
Occurs when layout causes the HwndSource to automatically resize. |
ContentRendered |
Occurs when content is rendered and ready for user interaction. (Inherited from PresentationSource) |
Disposed |
Occurs when the Dispose() method is called on this object. |
DpiChanged |
Occurs when the DPI of the monitor of this Hwnd has changed, or the Hwnd is moved to a monitor with a different DPI. |
SizeToContentChanged |
Occurs when the value of the SizeToContent property changes. |
Explicit Interface Implementations
IKeyboardInputSink.HasFocusWithin() |
For a description of this member, see IList.Remove(Object). |
IKeyboardInputSink.KeyboardInputSite |
For a description of this member, see KeyboardInputSite. |
IKeyboardInputSink.OnMnemonic(MSG, ModifierKeys) |
For a description of this member, see OnMnemonic(MSG, ModifierKeys). |
IKeyboardInputSink.RegisterKeyboardInputSink(IKeyboardInputSink) |
For a description of this member, see RegisterKeyboardInputSink(IKeyboardInputSink). |
IKeyboardInputSink.TabInto(TraversalRequest) |
For a description of this member, see TabInto(TraversalRequest). |
IKeyboardInputSink.TranslateAccelerator(MSG, ModifierKeys) |
For a description of this member, see TranslateAccelerator(MSG, ModifierKeys). |
IKeyboardInputSink.TranslateChar(MSG, ModifierKeys) |
For a description of this member, see TranslateChar(MSG, ModifierKeys). |