How To Use SS_GRAYRECT SS_BLACKRECT SS_WHITERECT in Windows 95 (125684)



The information in this article applies to:

  • Microsoft Platform Software Development Kit (SDK) 1.0, when used with:
    • Microsoft Windows 95
    • the operating system: Microsoft Windows 2000

This article was previously published under Q125684

SUMMARY

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.

MORE INFORMATION

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.

Modification Type:MinorLast Reviewed:7/11/2005
Keywords:kbCtrl kbhowto kbStaticCtrl KB125684