vote up 0 vote down star

When I am developing a bunch of designers/tools, what are some of the best fit patterns that go with a VSX Package and/or VSX Isolated Shell Package?

Any samples, links would be great.

flag

48% accept rate

2 Answers

vote up 1 vote down check

If you're looking for general design patterns, I would suggest looking into the Presentation Model pattern (also known as MVP and MVVM) for writing a custom designer.

In general, all VSPackages (regardless of the kind of tool) use the Service Locator pattern (i.e. IServiceProvider) for communicating with the IDE and other VSPackages.

link|flag
Thanks I use both MVVM for Designer and SL pattern for any other services, just like you mentioned :) – Vin May 29 at 11:51
vote up 1 vote down

Apart from IoC and DI (Service Locator) where I on larger packages "replace" the IServiceProvider with Castle (Search for Castle Project) for my own services ect. and then MVP/MVC or just PresentationModel.

I Tend to use a Command Pattern for binding Menu items defined in the vsct file.

Besides that I Use whatever pattern or practice I see fit as I would in a regular .NET solution, factories, builders, observer, and so on.

I Also tend to use Aspect oriented programming for exception policies among other cross cutting concerns (see PostSharp)

link|flag
Thanks for the PostSharp link. Do you have a sample of blog post on how you implemented Command pattern for menu items in VSCT file? – Vin Aug 12 at 16:01
I Actually didn't, but I have tried to brew it down to the basics in this post now: dotjem.com/archive/2009/08/19/27.aspx – Jens Aug 19 at 7:10

Your Answer

Get an OpenID
or

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