I recently installed Visual Studio 2013 Professional and found that in the project type of a Windows Forms application, I cannot move controls on the form in design mode. I checked several alternatives and found the following:
- Controls can be moved using the keyboard
- You can change the controls by dragging key points onto the outline of the control
- Controls can be aligned using commands in the Tools menu.
- You can move controls by manually setting the
Location field in the designer properties grid. - Controls can be docked
- Controls cannot be moved with the mouse.
In addition, as you can see in the image below, the cross icon indicating that the controls are movable does not appear on any controls.

I tried the following but still could not fix the problem:
- Created a new project and solution (same issue)
- New form created (same problem)
- Checked that the
Locked property of both the form and the controls is set to False - Checked that the form inherits from
Form (as expected, as this is a standard installation and the first time I used it) - Googled for help (nothing worked)
Any suggestions would be appreciated.
c # visual-studio visual-studio-2013 winforms
Bret wolfington
source share