Visual Studio SDK - Handle File Save Event

半城伤御伤魂 提交于 2019-12-03 01:50:47

The event handler for saving files is:

Dte.Events.DocumentEvents.DocumentSaved

Note you need to keep a reference to Events and DocumentEvents in order for it to actually work. Here is some information on that: http://social.msdn.microsoft.com/Forums/br/vsx/thread/0857a868-e650-42ed-b9cc-2975dc46e994

Here is a link to 30 sample projects that illustrate all kinds of functionality for Visual Studio Add-Ins:

http://code.msdn.microsoft.com/Visual-Studio-2010-SDK-ddfe1372

You can find some getting started informatin here:

http://msdn.microsoft.com/en-us/vstudio/ff677564.aspx

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