HwndSourceParameters.WindowStyle Property
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.
Gets or sets the style for the window.
public:
property int WindowStyle { int get(); void set(int value); };
public int WindowStyle { get; set; }
member this.WindowStyle : int with get, set
Public Property WindowStyle As Integer
Property Value
The window style. See the CreateWindowEx function for a complete list of style bits. Defaults: WS_VISIBLE, WS_CAPTION, WS_SYSMENU, WS_THICKFRAME, WS_MINIMIZEBOX, WS_MAXIMIZEBOX, WS_CLIPCHILDREN.
Remarks
By default, the following bits are set when the structure is created: WS_VISIBLE; WS_CAPTION; WS_SYSMENU; WS_THICKFRAME; WS_MINIMIZEBOX; WS_MAXIMIZEBOX; WS_CLIPCHILDREN.
For a standard window, you must set the WS_CLIPCHILDREN bit. This style bit is enforced in the code itself; if you omit to set this flag, WPF adds it to whatever value you provide.