I created an item template that generates a .CS file and adds it to the project. I want to create a DESIGNER that is shown everytime the user tries to open this .CS file from the Solution Explorer, just like XX.EDMX and XX.Dsigner.cs ?

Any ideas? Thanks!!

link|improve this question

feedback

closed as not a real question by Robert Harvey Jan 10 at 17:45

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

up vote 1 down vote accepted

The short answer is given in the VSSDK reference (on MSDN) page on Designer Initialization and Metadata Configuration page (all keywords are linked on the page itself):

A VSPackage should handle designer initialization by:

  1. Creating an object implementing the DesignSurfaceExtension class.

  2. Register the class implementing DesignSurfaceExtension as providing support for the VSPackage's designer extensions by applying instances of DesignSurfaceExtensionAttribute, ProvideObjectAttribute and ProvideServiceAttribute to the class providing the VSPackage's implementation of Package.

Unfortunately the long answer is going to be extremely long, and in the absence of genuinely good documentation, involve a lot of trial and error. A quick search didn't show any complete examples, so if you're willing/able to, it'd be great if you could share what you figure out.

link|improve this answer
Thanks, but I can't find anything on that :( – Nazaf Jan 9 at 22:18
feedback

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