Windows.CreateLinkedWindowFrame 메서드
Window 개체를 만들고 이 개체에 창 두 개를 놓습니다.
네임스페이스: EnvDTE
어셈블리: EnvDTE(EnvDTE.dll)
구문
‘선언
Function CreateLinkedWindowFrame ( _
Window1 As Window, _
Window2 As Window, _
Link As vsLinkedWindowType _
) As Window
Window CreateLinkedWindowFrame(
Window Window1,
Window Window2,
vsLinkedWindowType Link
)
Window^ CreateLinkedWindowFrame(
[InAttribute] Window^ Window1,
[InAttribute] Window^ Window2,
[InAttribute] vsLinkedWindowType Link
)
abstract CreateLinkedWindowFrame :
Window1:Window *
Window2:Window *
Link:vsLinkedWindowType -> Window
function CreateLinkedWindowFrame(
Window1 : Window,
Window2 : Window,
Link : vsLinkedWindowType
) : Window
매개 변수
Window1
형식: EnvDTE.Window필수입니다. 다른 개체에 연결할 첫 번째 Window 개체입니다.
Window2
형식: EnvDTE.Window필수입니다. 다른 개체에 연결할 두 번째 Window 개체입니다.
Link
형식: EnvDTE.vsLinkedWindowType필수입니다. 창을 조인하는 방법을 나타내는 vsLinkedWindowType 상수입니다.
반환 값
형식: EnvDTE.Window
Window 개체
설명
Window 인수의 순서는 연결된 창의 순서를 결정합니다. 연결할 두 창은 표시된 상태여야 합니다. 숨겨진 창이 있으면 예외가 발생합니다. Visible 속성을 사용하여 창을 표시할 수 있습니다.
예제
Sub CreateLinkedWindowFrameExample()
Dim Frame As Window
Dim w1 As Window = _
DTE.Windows.Item(Constants.vsWindowKindSolutionExplorer)
Dim w2 As Window = DTE.Windows.Item(Constants.vsWindowKindOutput)
Dim w3 As Window = _
DTE.Windows.Item(Constants.vsWindowKindCommandWindow)
' Create a linked window frame and dock Solution Explorer
' and the Ouput window together inside it.
Frame = DTE.Windows.CreateLinkedWindowFrame(w1, w2, _
vsLinkedWindowType.vsLinkedWindowTypeDocked)
MsgBox("Total number of windows in the linked window frame: " & _
Frame.LinkedWindows.Count)
' Add another tool window, the Command window, to the frame with
' the other two.
Frame.LinkedWindows.Add(w3)
MsgBox("Total number of windows in the linked window frame: " & _
Frame.LinkedWindows.Count)
' Resize the entire linked window frame.
Frame.Width = 500
Frame.Height = 600
MsgBox("Frame height and width changed. Now changing Command window _
height.")
' Resize the height of the Command window.
Frame.LinkedWindows.Item(3).Height = 800
MsgBox("Now undocking the Command window from the frame.")
' Undock the Command window from the frame.
Frame.LinkedWindows.Remove(w3)
End Sub
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용를 참조하세요.