在DELPHI中如何用API函数创建一个MDIchild窗口
在DELPHI中如何用API函数创建一个MDIchild窗口,在这里只能向你们请教了,那个函数怎么用,参数很多,最好给个例子,就是使用CreateMDIWindow()
HWND CreateMDIWindow(
LPTSTR lpClassName, // pointer to registered child class name
LPTSTR lpWindowName, // pointer to window name
DWORD dwStyle, // window style
int X, // horizontal position of window
int Y, // vertical position of window
int nWidth, // width of window
int nHeight, // height of window
HWND hWndParent, // handle to parent window (MDI client)
HINSTANCE hInstance, // handle to application instance
LPARAM lParam // application-defined value
);
谢谢了,各位高手。。