Creating a custom designer

折月煮酒 提交于 2019-12-06 05:26:30

You can create custom designers, but how you go about it depends on your requirements. If you're lucky, you can get away with a simple extension which handles editing certain types of files, such as the Snippet designer You can find the code for the extension on codeplex.

If you're not lucky, you may end up having to create your own project system. This is not an easy solution to implement, as it requires in-depth knowledge of VS.

Here's the documentation root for creating custom text editors, aka the simple route.

This is a good blog post from the XML team which details how they control what type of editor is used on XML files. Knowing how they accomplish this may help you determine if you can go for just a custom editor.

This thread on VSX (Visual Studio Extensibility) MSDN Forum will help you as well: Custom Forms Designer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!