Creating a 'Custom Designer' Visual Studio 2010 Add-in

Posted by Daniel I-S on Stack Overflow See other posts from Stack Overflow or by Daniel I-S
Published on 2010-06-18T00:21:04Z Indexed on 2010/06/18 0:23 UTC
Read the original article Hit count: 732

A major part of our work is creating and manipulating certain XML files, for which have a custom editor. The editor is starting to get creaky and we are looking at building a replacement. Since VS2010 has recently arrived, ostensibly with an improved add-in architecture (MEF?), I am interested in the possibility of building the editor as a custom editor within Visual Studio.

It would have to appear in the same way as the code editor or the Designer - a tab item, of which there can be many open at once, containing the GUI we use to edit the files. It would integrate with VS's Edit menu. It could use the output window to display messages. It would appear the same as any other editor within Visual Studio.

Right now, I am looking for examples of add-ins that work in a similar way - ideally with source code - to see whether this model would suit our requirements. I am also looking for any documentation or tutorials relevant to creating a VS2010 add-in, or information about VS2008 add-ins if this is still relevant.

Any input is welcome. Thanks!

© Stack Overflow or respective owner

Related posts about c#

Related posts about visual-studio-2010