vote up 5 vote down star
1

I have a class which implements UserControl. In .NET 2005, a Dispose method is automatically created in the MyClass.Designer.cs partial class file that looks like this:

  protected override void Dispose(bool disposing)
  {
     if (disposing && (components != null))
     {
        components.Dispose();
     }
     base.Dispose(disposing);
  }

If I want to add my own Dispose functionality, where would I put it? Since this file is generated, I don't want to add code here and risk it getting blown away.

flag

6 Answers

vote up 6 vote down check

In such a case I move the generated Dispose method to the main file and extend it. Visual Studio respects this.

An other approach would be using a partial method (C# 3.0).

link|flag
A partial method does not work in this scenario. – Micah Oct 5 '08 at 5:17
The Dispose method in Designer file could be extended to include a call to a partial method, which may be implemented in the main file. – Michael Damatov Oct 12 '08 at 0:10
2  
Since the MyClass.Designer.cs file is already a partial file, you can simply add the needed logic to the Dispose method already generated. Visual Studio will not overwrite the method once it's been created so you're safe to modify it. – Scott Dorman Oct 17 '08 at 8:51
vote up 3 vote down

I believe in this case the code-generator honors your code. It should be safe to put it in the codebehind.

link|flag
vote up 2 vote down

In VS 2005 (and 2008) you can update the Dispose method and it will not get removed when you edit the control from the designer.

link|flag
vote up 1 vote down

All Component classes implement Disposed event. You can add event handler and clean up things.

link|flag
vote up 0 vote down

You can move it out from the .designer.cs file and into the main .cs file if you want. As has been said already, it won't be overwritten.

link|flag
vote up 0 vote down

You just need to overload the public void Dispose() method in the Component Class that the user control inherits.

make sure you pass the call to the base method as well as doing your dispose functionally or you'll break the functionality unless you fully implement it

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.