I found an old article called LearnVSXNow and part # 30 - Custom Editors in Visual Studio . There is an example Blog Element Editor project that shows how to create your own file type assigned by a custom user interface editor for this file type extension (.blit). This example uses the VSXtra project, which was written for Visual Studio 2008 .
Can someone point me to some kind of tutorial, somehow or something, what to do for Visual Studio 2010 ? My goal is to register a file type user extension extension (for example, * .myext1) in visual studio 2010 and designate my own user interface (WinForms, obtained from UserControl) to visually edit the contents of such a file.
I found several samples, but each of them shows only the changes in the text editor of the code (highlight a few words, etc.). But I want to show my own tool with my user control inside it.
PS: The part of creating a custom tool window with my own user control inside it is not a problem, I use the VSPackage Builder Project Template to create and register it inside visx. My problem is how to register a custom file type in order to use this custom file editing tool.
source share