1,936 questions
Try opening the Program.cs, find the Main function and make sure that it has the [STAThread] attribute:
[STAThread]
static void Main()
{
. . .
}
Usually this attribute is present by default. Check if the control works in a new simple Forms application.