Visual Studio WinForms Designer: Unable to Move Controls inside of TabPage

Viewed 258

I am using a .net core 3.1 WinForms Application.

Moving controls works perfectly fine outside of a tab control, but the moment I place a control inside of a TabPage I am unable to move it again. I can no longer select it from the designer either, and the only way I can is to select it from the properties menu.

After I access it from there, the only thing I can do is resize it, as shown in the image below:

enter image description here

Things I tried:

  • Made sure the component was not locked.
  • Pressed escape (as per the solution here)
  • Rebuilt the solution.
  • Restarted Visual Studio.
  • Deleted Visual Studio's AppData folder.
  • Made sure my Dock property was set to none.
  • Ensured Visual Studio is on my primary monitor

I really want to use tab pages with my application, but I don't want to keep resizing it everytime I want to move something, so any help is greatly appreciated.

1 Answers

Update: I decided to switch my project from .Net Core to .Net Framework and it now works, so it must have something to do with .Net Core. I'll leave this open if anyone has a solution for .Net Core.

Related