advanced code snippet search
qrist0ph on 10/12/08
WPF
10/12/08 08:14pm
1 person have marked this snippet as a favorite
umang_nine
Random r = new Random();byte[] argb = new byte[4];r.NextBytes(argb);SolidColorBrush mySolidColorBrush = new SolidColorBrush();mySolidColorBrush.Color = Color.FromArgb(argb[0], argb[1], argb[2], argb[3]);
Report this snippet Tweet
Comment:
You need to login to post a comment.