文文小星的blog
asp.net技术,C#,atlas
public class SolutionEvents : IVsSolutionEvents3

{



}

SolutionEvents solutionEvents = new SolutionEvents();
IVsSolution solution = this.GetService(typeof(SVsSolution)) as IVsSolution;
uint mySolutionEventsCookie = 0;
if (solution != null)
{
int adviseSolutionResult = solution.AdviseSolutionEvents(solutionEvents, out mySolutionEventsCookie);
if (adviseSolutionResult != VSConstants.S_OK)
{
Trace.TraceWarning(Localizable.AdviseSolutionEventFailed);
}
}

 

 

posted on 2013-03-20 16:39  冯文元  阅读(186)  评论(0编辑  收藏  举报