我想用不同的颜色画线(大约 100 条)。线条将循环绘制并获得随机颜色。这是我的代码:
for( int i = 0; i < 100 < i++ )
{
srand( time(NULL) );
int index = rand() % 99;
Pen^ my_pen = gcnew Pen((Color)CustomColorTables[index]);
g->drawLine(my_pen,startPointAray[i],stopPointArray[i]);
}
但是它用相同的颜色绘制所有线条???
注意:我检查了随机值,生成随机值没有问题。