共用方式為


Window.LinkedWindowFrame 屬性

取得 Window 物件,表示包含視窗的視窗框架。

命名空間:  EnvDTE
組件:  EnvDTE (在 EnvDTE.dll 中)

語法

'宣告
ReadOnly Property LinkedWindowFrame As Window
    Get
Window LinkedWindowFrame { get; }
property Window^ LinkedWindowFrame {
    Window^ get ();
}
abstract LinkedWindowFrame : Window
function get LinkedWindowFrame () : Window

屬性值

型別:EnvDTE.Window
Window 物件。

備註

請注意,如果視窗停駐在主視窗的邊上,則 LinkedWindowFrame 是和主環境視窗相同的物件。

如果視窗未連結、是 LinkedWindowFrame 類型、被隱藏,或是文件,則 LinkedWindowFrame 會傳回 Nothing。 由於隱藏視窗不在視窗框架中,因此不視為是連結狀態。

範例

[Visual Basic]

Sub LinkedWindowFrameExample()
   Dim Frame As Window
   Dim w1 As Window = _
   DTE.Windows.Item(Constants.vsWindowKindSolutionExplorer)
   Dim w2 As Window = DTE.Windows.Item(Constants.vsWindowKindOutput)
    
   ' Create a linked window frame and dock Solution Explorer 
   ' and the Ouput window together inside it.
   Frame = DTE.Windows.CreateLinkedWindowFrame(w1, w2, _
   vsLinkedWindowType.vsLinkedWindowTypeDocked)
   Frame.LinkedWindows.Item(1).LinkedWindowFrame.Activate()
End Sub

.NET Framework 安全性

請參閱

參考

Window 介面

EnvDTE 命名空間