本文介绍了从C#中的画笔集合中选择一个随机画笔的最好方法是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

从C#中的System.Drawing.Brushes集合中选择随机画笔的最佳方法是什么?

What is the best way to pick a random brush from the System.Drawing.Brushes collection in C#?

推荐答案

你只需要一个随机颜色的固体刷,你可以尝试这样:

If you just want a solid brush with a random color, you can try this:

    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));

这篇关于从C#中的画笔集合中选择一个随机画笔的最好方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 08:38