Encyclopedia > Window class

  Article Content

Window class

In computer programming, window class is a class in the sense of object-oriented programming specifying the icon, the background color and some other attributes of windows in Microsoft Windows operating systems.

People are often confused but it is not the class of C++ but mere binary data structure in essence.

It is defined using C programming language's struct[?] as WNDCLASS or WNDCLASSEX:

typedef struct {
    UINT style;
    WNDPROC lpfnWndProc;
    int cbClsExtra;
    int cbWndExtra;
    HINSTANCE hInstance;
    HICON hIcon;
    HCURSOR hCursor;
    HBRUSH hbrBackground;
    LPCTSTR lpszMenuName;
    LPCTSTR lpszClassName;
} WNDCLASS, *PWNDCLASS;

or

typedef struct {
    UINT cbSize;
    UINT style;
    WNDPROC lpfnWndProc;
    int cbClsExtra;
    int cbWndExtra;
    HINSTANCE hInstance;
    HICON hIcon;
    HCURSOR hCursor;
    HBRUSH hbrBackground;
    LPCTSTR lpszMenuName;
    LPCTSTR lpszClassName;
    HICON hIconSm;
} WNDCLASSEX, *PWNDCLASSEX;



All Wikipedia text is available under the terms of the GNU Free Documentation License

 
  Search Encyclopedia

Search over one million articles, find something about almost anything!
 
 
  
  Featured Article
Lake Ronkonkoma, New York

... American, 0.15% Native American, 2.41% Asian, 0.03% Pacific Islander, 1.25% from other races, and 1.27% from two or more races. 5.85% of the population are Hispanic ...

 
 
 
This page was created in 39.3 ms