现在的位置: 首页 > 综合 > 正文

CreateWindowEx 参数lpParam

2013年10月08日 ⁄ 综合 ⁄ 共 1178字 ⁄ 字号 评论关闭

The   CREATESTRUCT   structure   defines   the   initialization  
parameters   passed   to   the   window   procedure   of   an  
application.   These   members   are   identical   to   the   parameters
  of   the   CreateWindowEx   function.

Syntax

typedef   struct   tagCREATESTRUCT   {
        LPVOID  
lpCreateParams;
        HINSTANCE   hInstance;
       
HMENU   hMenu;
        HWND   hwndParent;
        int
  cy;
        int   cx;
        int   y;
     
  int   x;
        LONG   style;
        LPCTSTR  
lpszName;
        LPCTSTR   lpszClass;
        DWORD  
dwExStyle;
}   CREATESTRUCT,   *LPCREATESTRUCT;
Members

lpCreateParams
Contains   additional   data   which   may  
be   used   to   create   the   window.   If   the   window   is   being
  created   as   a   result   of   a   call   to   the   CreateWindow  
or   CreateWindowEx   function,   this   member   contains   the  
value   of   the   lpParam   parameter   specified   in   the   function
  call.  
If   the   window   being   created   is   an  
multiple-document   interface   (MDI)   window,   this   member  
contains   a   pointer   to   an   MDICREATESTRUCT   structure.  

Windows   NT/2000/XP:   If   the   window   is   being   created  
from   a   dialog   template,   this   member   is   the   address   of
  a   SHORT   value   that   specifies   the   size,   in   bytes,   of
  the   window   creation   data.   The   value   is   immediately  
followed   by   the   creation   data.   For   more   information,   see
  the   following   Remarks   section.

抱歉!评论已关闭.