What is the best way to copy or cut/past a form from one Project to another Project within a Solution in Visual Studio?
Whenever I try it, using the solution explorer (drag and drop or right clicking cut and past), it only copies the underlying C# code and not the necessary 'bits and pieces' that help you visualise the form via the form designer.
Make sure that you copy not only the Form.cs, but also the Form.designer.cs and Form.resx files.
But I need to ask why you would want to maintain a copy of the same form in multiple projects within the same solution. Sounds as if you might want to generalize the code in it, put it in a class library and re-use it in the places where it is applicable.
For Visual Studio V.12 this is the only method which worked for me (It is a mix of above entries):