C # Methods for obtaining random colors

Source: Internet
Author: User

The examples in this paper describe how C # obtains random colors. Share to everyone for your reference. The implementation method is as follows:


The code is as follows:

public string Getrandomcolor ()

{

Random Randomnum_first = new Random ((int) DateTime.Now.Ticks);

For random numbers in C #, there's nothing to say

System.Threading.Thread.Sleep (Randomnum_first.next (50));

Random randomnum_sencond = new Random ((int) DateTime.Now.Ticks);

To display on a white background, try to create a dark color

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;

}

In addition to the Declaration, Running GuestArticles are original, reproduced please link to the form of the address of this article
C # Methods for obtaining random colors

This address: http://www.paobuke.com/develop/c-develop/pbk23180.html






Related content The use of new in C # and the difference between it and override Analysis C # method of building pagination application Analysis C # How to create a database and import SQL Scripts C # implements methods to read and write INI files using the Windows API
C # Brush Pen Draw Dashed Method WinForm binding shortcut Method C # Delegate Usage instance Analysis C # design, use the fluent API

C # Methods for obtaining random colors

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.