C# Main()

What is the use of Application.EnableVisualStyles()?

The Entry point method of C#  Winform application looks as below, [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1());…

7 years ago