The colors used in the gray, white, and black rectangle static controls have changed in Windows 95 and Windows 2000. In previous versions of Windows, these colors were based on the system colors for windows. In Windows 95 and Windows 2000, these colors are based on the colors for 3D objects.
In Windows 95 and Windows 2000, the definitions for white, gray, and black rectangle static controls are as follows:
- SS_WHITERECT: Specifies a rectangle filled with the highlight color for
three-dimensional display elements (for edges facing the light source).
This is the same color retrieved by using GetSysColor() with
COLOR_3DHILIGHT.
- SS_GRAYRECT: Specifies a rectangle filled with the shadow color for
three-dimensional display elements (for edges facing away from the light
source). This is the same color retrieved by using GetSysColor() with
COLOR_3DSHADOW.
- SS_BLACKRECT: Specifies a rectangle filled with the Shadow color for
three-dimensional display elements (for edges facing away from the light
source). This is the same color retrieved by using GetSysColor() with
COLOR_3DDKSHADOW. This is not the same color as COLOR_3DSHADOW. There
are two shadow colors used on 3D objects.
In previous versions of Windows, the definitions for white, gray, and
black rectangle static controls were as follows:
- SS_WHITERECT: Specifies a rectangle filled with the color used to fill
window backgrounds. This color is white in the default Windows color
scheme. This is the same color retrieved by using GetSysColor() with
COLOR_WINDOW.
- SS_GRAYRECT: Specifies a rectangle filled with the color used to fill
the screen background. This color is gray in the default Windows color
scheme. This is the same color retrieved by using GetSysColor() with
COLOR_BACKGROUND.
- SS_BLACKRECT: Specifies a rectangle filled with the color used to draw
window frames. This color is black in the default Windows color scheme.
This is the same color retrieved by using GetSysColor() with
COLOR_WINDOWFRAME.
Article ID: 125684 - Last Review: July 11, 2005 - Revision: 2.3
APPLIES TO
- Microsoft Platform Software Development Kit-January 2000 Edition, when used with:
- Microsoft Windows 95
- Microsoft Windows 2000 Standard Edition
| kbctrl kbhowto kbstaticctrl KB125684 |