- Messages
- 5,508
- Reaction score
- 35
- Points
- 48
your issue is related to the visual style of your forms, which is resolved by enabling the visual styles in your application. just add this line in your main method.
static void Main ()
{
Application.EnableVisualStyles (); //<---- this line
Application.SetCompatibleTextRenderingDefault (false);
Application.Run (new MainForm ());
}