visual style
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I am using .net 2.0 The project has an mdi and several child forms... running win xp pro. I do not get the new visual style in .net 2.0 Any ideas please? This is the code present is Program.cs static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new CodexMainForm()); } }