C#取得随机颜色的方法
2021-04-23 09:56
标签:otto ext color 原创 用法 width ati isp fluent
本文实例讲述了C#取得随机颜色的方法。分享给大家供大家参考。具体实现方法如下:
代码如下:
{
Random RandomNum_First = new Random((int)DateTime.Now.Ticks);
// 对于C#的随机数,没什么好说的
System.Threading.Thread.Sleep(RandomNum_First.Next(50));
Random RandomNum_Sencond = new Random((int)DateTime.Now.Ticks);
// 为了在白色背景上显示,尽量生成深色
int int_Red = RandomNum_First.Next(256);
int int_Green = RandomNum_Sencond.Next(256);
int int_Blue = (int_Red + int_Green > 400) ? 0 : 400 – int_Red – int_Green;
int_Blue = (int_Blue > 255) ? 255 : int_Blue;
return Color.FromArgb(int_Red, int_Green, int_Blue).Name;
}
C#取得随机颜色的方法
本文地址: http://www.paobuke.com/develop/c-develop/pbk23180.html
相关内容






C#取得随机颜色的方法
标签:otto ext color 原创 用法 width ati isp fluent
原文地址:http://www.cnblogs.com/paobuke/p/7994954.html
下一篇:C# LINQ