Proprietà Window.LinkedWindowFrame

Ottiene un oggetto Window oggetto che rappresenta la struttura della finestra che contiene la finestra.

Spazio dei nomi:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Sintassi

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

Valore proprietà

Tipo: EnvDTE.Window
In Window oggetto.

Note

Notare che se la finestra è ancorata al lato della finestra principale, quindi LinkedWindowFrame è lo stesso oggetto della finestra principale dell'ambiente.

se la finestra non è collegata, è di tipo LinkedWindowFrame, nascosto, o è un documento, quindi LinkedWindowFrame restituisce Nothing.Le finestre nascoste non vengono considerate collegate perché non sono in una struttura della finestra.

Esempi

[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

Sicurezza di .NET Framework

Vedere anche

Riferimenti

Window Interfaccia

Spazio dei nomi EnvDTE