I'm working on an older .NET code base that has all the designer code stuffed into the same code file as my code (pre - partial classes).
Is there a mechanism to tell Visual Studio 2008 to go back and refactor designer code into a X.designer.cs partial class file?
What I just did was completely manually:
a) Remove the components object you might have in your original Winform. If the application was .NET 1.1 you will have something like this:
/// <summary> /// Required designer variable. /// </summary> private Container components = null;
b) Add a new components object in the Designer class:
/// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null;
c) Unless you had a specific dispose method, this is the standard. If you don't have any form Inheritance, I think that base.Dispose can be safety removed:
/// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose( bool disposing ) { if ( disposing && ( components != null ) ) { components.Dispose(); } base.Dispose( disposing ); }
d) Copy all the code inside the #region Windows Form Designer generated code to the new Designer.cs class.
e) You should also copy all the member variables for all your objects (labels, texboxes, etc. that you use in the designer).
That should be all about it. Save and compile.
Is it worthwhile? Well, in my case, I had a bunch of huge winforms with tons of code and controls. VS2008 crawled every time I switched from/to designer. This made the code view more responsive. I remember having to wait for 3-5 seconds before having a responsive code. Now it takes 1…
Doing steps 1 to 5 and moving an existing or adding a new control won't automatically move anything to the designer.cs class. New stuff goes to the new Designer class, but old stuff remains where it was, unfortunately.
You also have to close and reopen the file (after you have added/created the partial class) for VS to draw correctly in the Designer; failure to do may result in empty forms being drawn.
If anyone is still looking for an automated method of doing this there's a VS macro here that will do most of it for you.
A very nice tool.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With