ActiveDesignerEventArgs 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
提供 ActiveDesigner 事件的資料。
public ref class ActiveDesignerEventArgs : EventArgs
public class ActiveDesignerEventArgs : EventArgs
type ActiveDesignerEventArgs = class
inherit EventArgs
Public Class ActiveDesignerEventArgs
Inherits EventArgs
- 繼承
範例
下列範例方法會傳回 , ActiveDesignerEventArgs 其中包含設計工具遺失焦點的指定參考 IDesignerHost ,以及取得焦點之設計工具的指定參考 IDesignerHost 。
ActiveDesignerEventArgs^ CreateActiveDesignerEventArgs( IDesignerHost^ losingFocus, IDesignerHost^ gainingFocus )
{
ActiveDesignerEventArgs^ e = gcnew ActiveDesignerEventArgs( losingFocus, gainingFocus );
return e;
}
public ActiveDesignerEventArgs CreateActiveDesignerEventArgs(IDesignerHost losingFocus, IDesignerHost gainingFocus)
{
ActiveDesignerEventArgs e = new ActiveDesignerEventArgs(losingFocus, gainingFocus);
return e;
}
Public Function CreateActiveDesignerEventArgs(ByVal losingFocus As IDesignerHost, ByVal gainingFocus As IDesignerHost) As ActiveDesignerEventArgs
Dim e As New ActiveDesignerEventArgs(losingFocus, gainingFocus)
Return e
End Function
備註
當 ActiveDesigner 目前使用中文件變更時,就會發生此事件。 建立新文件、開啟現有檔或關閉檔時,使用中文件會變更。
當您建立 ActiveDesignerEventArgs 委派 (Delegate) 時,就可以識別即將處理此事件的方法。 若要使事件與您的事件處理常式產生關聯,請將委派的執行個體 (Instance) 加入至事件。 除非您移除委派,否則每當事件發生時就會呼叫事件處理常式。 如需事件處理程式委派的詳細資訊,請參閱 處理和引發事件。
建構函式
ActiveDesignerEventArgs(IDesignerHost, IDesignerHost) |
初始化 ActiveDesignerEventArgs 類別的新執行個體。 |
屬性
NewDesigner |
取得正獲得啟動過程的文件。 |
OldDesigner |
取得正失去啟動過程的文件。 |
方法
Equals(Object) |
判斷指定的物件是否等於目前的物件。 (繼承來源 Object) |
GetHashCode() |
做為預設雜湊函式。 (繼承來源 Object) |
GetType() |
取得目前執行個體的 Type。 (繼承來源 Object) |
MemberwiseClone() |
建立目前 Object 的淺層複製。 (繼承來源 Object) |
ToString() |
傳回代表目前物件的字串。 (繼承來源 Object) |