Interfaccia WindowEvents
Aggiornamento: novembre 2007
Fornisce eventi per le modifiche apportate alle finestre nell'ambiente. Utilizzare questo oggetto per la funzionalità e fare riferimento a WindowEventsClass per la documentazione dell'oggetto.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
<GuidAttribute("0D3A23A8-67BB-11D2-97C1-00C04FB6C6FF")> _
Public Interface WindowEvents _
Implements _WindowEvents, _dispWindowEvents_Event
Dim instance As WindowEvents
[GuidAttribute("0D3A23A8-67BB-11D2-97C1-00C04FB6C6FF")]
public interface WindowEvents : _WindowEvents,
_dispWindowEvents_Event
[GuidAttribute(L"0D3A23A8-67BB-11D2-97C1-00C04FB6C6FF")]
public interface class WindowEvents : _WindowEvents,
_dispWindowEvents_Event
public interface WindowEvents extends _WindowEvents, _dispWindowEvents_Event
Note
L'oggetto WindowEvents è restituito da DTE.Events.
Esempi
<System.ContextStaticAttribute()> Public WithEvents WindowEvents As EnvDTE.WindowEvents
Public Sub WindowEvents_WindowActivated(ByVal GotFocus As EnvDTE.Window, ByVal LostFocus As EnvDTE.Window) Handles WindowEvents.WindowActivated
MsgBox("test")
End Sub