Írjunk programot, amely színek előállításához az R G B értékeit vélelenszám generátorral állítja elő.
A feladat megoldása
private void button1_Click(object sender, EventArgs e)
{
Random m = new Random();
int szinR, szinG, szinB;
szinR = m.Next(256);
szinG = m.Next(256);
szinB = m.Next(256);
Graphics g = this.CreateGraphics();
Rectangle t = new Rectangle(new Point(105, 55),
new Size(80, 80));
SolidBrush b = new SolidBrush(
Color.FromArgb(szinR, szinG,szinB));
g.FillRectangle(b,t);
textBox1.Text = szinR.ToString();
textBox2.Text = szinG.ToString();
textBox3.Text = szinB.ToString();
}
A program futási eredményei: