BOOL PolyPolyline(
const POINT* lpPoints,
const DWORD* lpPolyPoints,
DWORD nCount
);
参数解释:
- lpPoints:一个 POINT 数组,表示所有折线的顶点坐标。数组中的顶点按照折线的顺序排列。
- lpPolyPoints:一个 DWORD 数组,表示每个折线的顶点数量。
- nCount:折线的数量。
这个方法绘制由 lpPoints 和 lpPolyPoints 数组定义的多个折线。如果折线成功绘制,返回非零值;否则返回零。
使用示例:
// 假设有两条折线,每条折线有四个顶点
POINT points[] = {
{10, 10},
{50, 10},
{50, 50},
{10, 50},
{60, 60},
{100, 60},
{100, 100},
{60, 100}
};
// 每条折线的顶点数量
DWORD polyPoints[] = {4, 4};
// 获取折线的数量
DWORD nCount = sizeof(polyPoints) / sizeof(polyPoints[0]);
// 在设备上下文中绘制多条折线
pDC->PolyPolyline(points, polyPoints, nCount);
在这个例子中,绘制了两条折线,第一条折线的顶点为 (10, 10), (50, 10), (50, 50), (10, 50),第二条折线的顶点为 (60, 60), (100, 60), (100, 100), (60, 100)。你可以根据实际需求定义不同的顶点和折线数量来绘制不同形状的折线。
转载请注明出处:http://www.pingtaimeng.com/article/detail/17171/MFC/CDC