c# 怎么随机获得系统设定的颜色?随机得到,如果操作?[解决办法]
Random r = new Random();Color c = Color.FromArgb(r.Next(0, 255), r.Next(0, 255), r.Next(0, 255));