recently I was working on Windows Form Project on Visual Studio 2010, when it started to show this strange behavior. Whenever I open a windows form in designer, an empty control is created and hangs in the middle of the screen.
The only "non standard" feature I am using, I extend each control with a parent user control as following
public partial class MainUserControl : UserControl
{
...
}
public partial class UserControl : MainUserControl
{
...
}

Any hint on how to fix?