/* 角の丸い矩形を描画する */ BOOL RoundRect( HDC hdc, // デバイスコンテキストハンドル int nLeftRect, // 左上x座標 int nTopRect, // 左上y座標 int nRightRect, // 右下x座標 int nBottomRect, // 右下y座標 int nWidth, // 角の楕円の幅 int nHeight // 角の楕円の高さ ); /* 説明 */ 指定した角の丸い長方形を描画します。