WindowState change event in Visual Studio extension

谁说我不能喝 提交于 2019-12-13 06:19:03

问题


I am looking for an event that will notify me when the main window is minimized and restored in a Visual Studio extension package.

I've looked at the DTE2.Events, as well as the IVsWindowFrame and IVsWindowFrameNotify interfaces but don't see anything that will do what I need.


回答1:


Get the HWND of the VS window: HWnd of Visual Studio 2010

Capture the messages being sent to Visual Studio: C# - Capturing Windows Messages from a specific application

Then wait for a WM_SIZE message: http://msdn.microsoft.com/en-us/library/ms632646%28v=VS.85%29.aspx




回答2:


The EnvDTE80.DTE2.Events.WindowEvents.WindowMoved event fires on main window minimize and restore.



来源:https://stackoverflow.com/questions/21765531/windowstate-change-event-in-visual-studio-extension

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