|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| winuser.h
| Unicode
| No
| Platform Notes
| None
|
|
|
WM_PALETTECHANGED
The WM_PALETTECHANGED message is sent to all top-level and overlapped windows
after the window with the keyboard focus has realized its logical palette,
thereby changing the system palette. This message enables a window that uses a
color palette but does not have the keyboard focus to realize its logical palette
and update its client area.
WM_PALETTECHANGED
hwndPalChg = (HWND) wParam; // handle of window that changed palette
Parameters
hwndPalChg
Value of wParam. Identifies the window that caused the system palette to change.
Remarks
This message must be sent to all top-level and overlapped windows, including
the one that changed the system palette. If any child windows use a color
palette, this message must be passed on to them as well.
To avoid creating an infinite loop, a window that receives this message must
not realize its palette, unless it determines that wParam does not contain its own window handle.
See Also
WM_PALETTEISCHANGING, WM_QUERYNEWPALETTE
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|