Set the startup form Program. cs file to start the form program. cs

Source: Internet
Author: User

Set the startup form Program. cs file to start the form program. cs

1 using System; 2 using System. collections. generic; 3 using System. linq; 4 using System. windows. forms; 5 6 namespace Test01 7 {8 static class Program 9 {10 /// <summary> 11 // main entry point of the application. 12 /// </summary> 13 [STAThread] 14 static void Main () 15 {16 Application. enableVisualStyles (); 17 Application. setCompatibleTextRenderingDefault (false); 18 Application. run (new Form1 (); 19} 20} 21}

You can modify the "Form1" of row 18th to implement the window that appears for the first time when the program runs.

The Run method is used to Run standard applications on the current thread and make the form visible.

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.