当发送 WM_CREATE 消息时候,那个窗体是创建完了,还是正在创建,或准备创建?解决办法

当发送 WM_CREATE 消息时候,那个窗体是创建完了,还是正在创建,或准备创建?
当发送   WM_CREATE   消息时候,那个窗体是创建完了,还是正在创建,或准备创建?

还有这消息是系统发送的还是应用程序发送的?

------解决方案--------------------
This message is sent when an application requests that a window be created by calling the CreateWindowEx or CreateWindow function. The window procedure of the new window receives this message after the window is created, but before the window becomes visible. The message is sent before the CreateWindowEx or CreateWindow function returns.
------解决方案--------------------
窗口创建完后,显示出来之前。windows核心编程有讲
------解决方案--------------------
OnCreate()之前主窗体和部份控件已经创建完,在OnCreate()里可以对控件变量可以对控件变量进行初始化(注意:不是控件对象)。OnCreate()后执行的OnInitDialog()里我们可以对控件对象内容进行初始化。
这只是我个人的看法不知道对不对。
------解决方案--------------------
系统发给应用程序。