msdn描述如下:SM_CXSIZEFRAME, SM_CYSIZEFRAMEThickness, in pixels, of the sizing border around the perimeter of a window that can be resized. SM_CXSIZEFRAME is the width of the horizontal border, and SM_CYSIZEFRAME is the height of the vertical border.SM_CXSIZEFRAME是水平边框的宽度可以理解。但是
SM_CYSIZEFRAME是垂直边框的高度,这个怎么解释
看例程SM_CXSIZEFRAME,SM_CYSIZEFRAME分别是边框的垂直线和水平线宽度才对啊
例程是这样得到窗口左上角图标的尺寸的
cxSource = GetSystemMetrics (SM_CXSIZEFRAME) +
                     GetSystemMetrics (SM_CXSIZE) ;cySource = GetSystemMetrics (SM_CYSIZEFRAME) + 
                     GetSystemMetrics (SM_CYCAPTION) ;---<programming windows 14.3>第一个例程
另外,为什么用SM_CYCAPTION不用SM_CYSIZE呢?两者差多少?
垂直和水平的边框,它们的宽度一样吗?