PyCWnd.CreateWindowEx

CreateWindowEx(styleEx, classId, windowName, style, rect, parent, id, createStruct, createStruct)

Creates the actual window using extended capabilities.

Parameters

styleEx : int

The extended style of the window being created.

classId : string

The class ID for the window. May not be None.

windowName : string

The title for the window, or None

style : int

The style for the window.

rect : (left, top, right, bottom)

The size and position of the window.

parent : PyCWnd

The parent window of the new window..

id : int

The control's ID.

createStruct=None : CREATESTRUCT

A CreateStruct object (ie, a tuple)

createStruct : tuple

A tuple representing a CREATESTRUCT structure.

MFC References

CWnd::CreateEx