WindowEvents インターフェイス
環境内のウィンドウに対して行われた変更に対するイベントを提供します。このオブジェクトを使用して機能を提供します。このオブジェクトのドキュメントについては、WindowEventsClass を参照してください。
名前空間: EnvDTE
アセンブリ: EnvDTE (EnvDTE.dll 内)
構文
'宣言
<GuidAttribute("0D3A23A8-67BB-11D2-97C1-00C04FB6C6FF")> _
Public Interface WindowEvents _
Inherits _WindowEvents, _dispWindowEvents_Event
[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
[<GuidAttribute("0D3A23A8-67BB-11D2-97C1-00C04FB6C6FF")>]
type WindowEvents =
interface
interface _WindowEvents
interface _dispWindowEvents_Event
end
public interface WindowEvents extends _WindowEvents, _dispWindowEvents_Event
WindowEvents 型で公開されるメンバーは以下のとおりです。
メソッド
名前 | 説明 | |
---|---|---|
add_WindowActivated | インフラストラクチャ。マイクロソフト内部でのみ使用します。 (_dispWindowEvents_Event から継承されます。) | |
add_WindowClosing | インフラストラクチャ。マイクロソフト内部でのみ使用します。 (_dispWindowEvents_Event から継承されます。) | |
add_WindowCreated | インフラストラクチャ。マイクロソフト内部でのみ使用します。 (_dispWindowEvents_Event から継承されます。) | |
add_WindowMoved | インフラストラクチャ。マイクロソフト内部でのみ使用します。 (_dispWindowEvents_Event から継承されます。) | |
remove_WindowActivated | インフラストラクチャ。マイクロソフト内部でのみ使用します。 (_dispWindowEvents_Event から継承されます。) | |
remove_WindowClosing | インフラストラクチャ。マイクロソフト内部でのみ使用します。 (_dispWindowEvents_Event から継承されます。) | |
remove_WindowCreated | インフラストラクチャ。マイクロソフト内部でのみ使用します。 (_dispWindowEvents_Event から継承されます。) | |
remove_WindowMoved | インフラストラクチャ。マイクロソフト内部でのみ使用します。 (_dispWindowEvents_Event から継承されます。) |
このページのトップへ
イベント
名前 | 説明 | |
---|---|---|
WindowActivated | インフラストラクチャ。マイクロソフト内部でのみ使用します。 (_dispWindowEvents_Event から継承されます。) | |
WindowClosing | インフラストラクチャ。マイクロソフト内部でのみ使用します。 (_dispWindowEvents_Event から継承されます。) | |
WindowCreated | インフラストラクチャ。マイクロソフト内部でのみ使用します。 (_dispWindowEvents_Event から継承されます。) | |
WindowMoved | インフラストラクチャ。マイクロソフト内部でのみ使用します。 (_dispWindowEvents_Event から継承されます。) |
このページのトップへ
解説
WindowEvents オブジェクトは DTE.Events によって返されます。
例
<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