前端之家收集整理的这篇文章主要介绍了
从C#中的Brushes集合中选择随机画笔的最佳方法是什么?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
从C#中的System.Drawing.Brushes集合中选择
随机画笔的最佳
方法是什么?
如果你只想要一个
随机颜色的实心画笔,你可以试试这个:
Random r = new Random();
int red = r.Next(0,byte.MaxValue + 1);
int green = r.Next(0,byte.MaxValue + 1);
int blue = r.Next(0,byte.MaxValue + 1);
System.Drawing.Brush brush = new System.Drawing.SolidBrush(Color.FromArgb(red,green,blue));
原文链接:https://www.f2er.com/csharp/97935.html