HOWTO: Use SS_GRAYRECT SS_BLACKRECT SS_WHITERECT in Windows 95

ID: Q125684


The information in this article applies to:
  • Microsoft Win32 Software Development Kit (SDK), used with:
    • Microsoft Windows 95
  • Microsoft Windows 2000


SUMMARY

The colors used in the gray, white, and black rectangle static controls has changed in Windows 95. In previous versions of Windows, these colors were based on the system colors for windows. In Windows 95, these colors are based on the colors for 3D objects.


MORE INFORMATION

In Windows 95, 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.


Additional query words:

Keywords : kbCtrl kbWinOS2000 kbSDKWin32 kbStaticCtrl kbGrpUser kbWinOS95
Version : WINDOWS:95
Platform : WINDOWS
Issue type : kbhowto


Last Reviewed: February 2, 2000
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.