HwndSourceParameters Struct
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.
Contains the parameters that are used to create an HwndSource object using the HwndSource(HwndSourceParameters) constructor.
public value class HwndSourceParameters
public struct HwndSourceParameters
type HwndSourceParameters = struct
Public Structure HwndSourceParameters
- Inheritance
Remarks
This structure is used only in the HwndSource object constructor call.
The properties whose values are established by this structure are not directly exposed on HwndSource instances when an HwndSource is constructed. However, the values of the HwndSourceParameters structure typically affect general UI properties such as "Height" and "Width" that might exist in specific hosted objects and their APIs.
Important
Do not construct instances of this structure using the default (parameterless) constructor. An HwndSourceParameters instance that is created by the parameterless constructor results in HwndSourceParameters that cannot be assigned a WindowName (even though the WindowName property appears to be settable). If such an instance is applied as the parameters for an HwndSource constructor, the resulting HwndSource cannot display a window.
Constructors
HwndSourceParameters(String, Int32, Int32) |
Initializes a new instance of the HwndSourceParameters class with a specified window name and initial size. |
HwndSourceParameters(String) |
Initializes a new instance of the HwndSourceParameters class with a specified window name. |
Properties
AcquireHwndFocusInMenuMode |
Gets or sets the value that determines whether to acquire Win32 focus for the WPF containing window when an HwndSource is created. |
AdjustSizingForNonClientArea |
Gets or sets a value that indicates whether to include the nonclient area for sizing. |
ExtendedWindowStyle |
Gets or sets the extended Microsoft Windows styles for the window. |
HasAssignedSize |
Gets a value that indicates whether a size was assigned. |
Height |
Gets or sets a value that indicates the height of the window. |
HwndSourceHook |
Gets or sets the message hook for the window. |
ParentWindow |
Gets or sets the window handle (HWND) of the parent for the created window. |
PositionX |
Gets or sets the left-edge position of the window. |
PositionY |
Gets or sets the upper-edge position of the window. |
RestoreFocusMode |
Gets or sets how WPF handles restoring focus to the window. |
TreatAncestorsAsNonClientArea |
Gets or sets a value that indicates whether the parent windows of the HwndSource should be considered the non-client area of the window during layout passes. |
TreatAsInputRoot |
Gets or sets a value that indicates whether the HwndSource should receive window messages raised by the message pump via the ComponentDispatcher. |
UsesPerPixelOpacity |
Gets a value that declares whether the per-pixel opacity of the source window content is respected. |
UsesPerPixelTransparency |
Gets a value that declares whether the per-pixel transparency of the source window content is respected. |
Width |
Gets or sets a value that indicates the width of the window. |
WindowClassStyle |
Gets or sets the Microsoft Windows class style for the window. |
WindowName |
Gets or sets the name of the window. |
WindowStyle |
Gets or sets the style for the window. |
Methods
Equals(HwndSourceParameters) |
Determines whether this structure is equal to a specified HwndSourceParameters structure. |
Equals(Object) |
Determines whether this structure is equal to a specified object. |
GetHashCode() |
Returns the hash code for this HwndSourceParameters instance. |
SetPosition(Int32, Int32) |
Sets the values that are used for the screen position of the window for the HwndSource. |
SetSize(Int32, Int32) |
Sets the values that are used for the window size of the HwndSource. |
Operators
Equality(HwndSourceParameters, HwndSourceParameters) |
Determines whether an HwndSourceParameters structure is equal to another HwndSourceParameters structure. |
Inequality(HwndSourceParameters, HwndSourceParameters) |
Determines whether an HwndSourceParameters structure is not equal to another HwndSourceParameters structure. |