Jak: změnit vlastnosti okna
Systém Windows v Visual Studio jsou zastoupeny v automatizaci modelu podle Window2 objektu.Pomocí svých členů při manipulaci s vlastnostmi okna, šířka, výška, viditelnost a tak dále.Pomocí Window2 kolekce, můžete vytvořit propojený okno, které se skládá ze dvou nebo více nástroj windows ukotveny.Jejich členové umožňují také další windows na ukotvení nebo uvolnit další windows od rámečku.
[!POZNÁMKA]
Windows propojení musí být viditelné.Buď okna skryt, získat výjimku.Můžete zobrazit pomocí systému windows Visible vlastnost.
Windows2 Kolekci můžete také vytvořit vlastní nástroje systému windows.Další informace naleznete v tématu Jak: vytvoření a řízení nástroje systému Windows.
[!POZNÁMKA]
Dialogová okna a příkazy v nabídkách menu, které vidíte, se mohou lišit od těch popsaných v nápovědě, v závislosti na vašich aktivních nastaveních nebo edici.Tyto postupy byly vyvinuty s aktivní Obecné nastavení pro vývoj.Chcete-li změnit nastavení, zvolte Import a ExportNastavení na Nástroje nabídce.Další informace naleznete v tématu Nastavení aplikace Visual Studio.
Příklad
Následující příklady ukazují, jak odkaz a použít nástroje systému windows různými členy automatizace modelu.Vytváření okna propojené nástroje a vložit dva Visual Studio nástroj systému windows, konkrétně Aplikaci Solution Explorer a Výstup okna, spojující je.Rovněž zobrazují velikost a vyjmout z doku nástroje systému windows.Před spuštěním tohoto kódu, ujistěte se, že vlastnost "typů Interop Vložit" sestavení EnvDTE odkazovat na hodnotu False. Další informace o tom, jak spustit ukázkový kód v v naleznete Jak: kompilace a spuštění příkladů kódu automatizace objektu modelu.
Upozornění |
---|
Spuštění v tomto příkladu bude změna aktuálního Visual Studio rozložení okna nástroje. |
Public Sub OnConnection(ByVal application As Object, ByVal _
connectMode As ext_ConnectMode, ByVal addInInst As Object, _
ByRef custom As Array) Implements IDTExtensibility2.OnConnection
_applicationObject = CType(application, DTE2)
_addInInstance = CType(addInInst, AddIn)
chgWindow(_applicationObject)
End Sub
Public Sub chgWindow(ByVal dte As DTE2)
' Create variables for the various tool windows.
Dim winFrame As EnvDTE80.Window2
Dim win1 As Window = _
dte.Windows.Item(Constants.vsWindowKindSolutionExplorer)
Dim win2 As Window = dte.Windows. _
Item(Constants.vsWindowKindOutput)
Dim win3 As Window = dte.Windows. _
Item(Constants.vsWindowKindCommandWindow)
' Create a linked window frame and dock Solution
' Explorer and the Ouput window together inside it.
winFrame = CType(dte.Windows.CreateLinkedWindowFrame(win1, win2, _
vsLinkedWindowType.vsLinkedWindowTypeDocked), Window2)
MsgBox("Total number of windows in the linked window frame: " & _
winFrame.LinkedWindows.Count)
' Add another tool window, the Command window, to the frame
' with the other two.
winFrame.LinkedWindows.Add(win3)
MsgBox("Total number of windows in the linked window frame: " & _
winFrame.LinkedWindows.Count)
' Resize the entire linked window frame.
winFrame.Width = 500
winFrame.Height = 600
MsgBox("Frame height and width changed. Now changing Command _
window height.")
' Resize the height of the Command window.
winFrame.LinkedWindows.Item(3).Height = 800
MsgBox("Now undocking the Command window from the frame.")
' Undock the Command window from the frame.
winFrame.LinkedWindows.Remove(win3)
End Sub
public void OnConnection(object application, ext_ConnectMode
connectMode, object addInInst, ref Array custom)
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;
chgWindow(_applicationObject);
}
public void chgWindow(DTE2 dte)
{
// Create variables for the various tool windows.
EnvDTE80.Window2 winFrame;
Window win1 =
dte.Windows.Item(Constants.vsWindowKindSolutionExplorer);
Window win2 = dte.Windows.Item(Constants.vsWindowKindOutput);
Window win3 =
dte.Windows.Item(Constants.vsWindowKindCommandWindow);
// Create a linked window frame and dock Solution
// Explorer and the Ouput window together inside it.
winFrame = (Window2)dte.Windows.CreateLinkedWindowFrame(win1, win2,
vsLinkedWindowType.vsLinkedWindowTypeDocked);
System.Windows.Forms.MessageBox.Show("Total number of windows in
the linked window frame: " + winFrame.LinkedWindows.Count);
// Add another tool window, the Command window, to the frame
// with the other two.
winFrame.LinkedWindows.Add(win3);
System.Windows.Forms.MessageBox.Show(
"Total number of windows in the linked window frame: " +
winFrame.LinkedWindows.Count);
// Resize the entire linked window frame.
winFrame.Width = 500;
winFrame.Height = 600;
System.Windows.Forms.MessageBox.Show(
"Frame height and width changed." +
"Now changing Command window height.");
// Resize the height of the Command window.
winFrame.LinkedWindows.Item(3).Height = 800;
System.Windows.Forms.MessageBox.Show(
"Now undocking the Command window from the frame.");
// Undock the Command window from the frame.
winFrame.LinkedWindows.Remove(win3);
}
Viz také
Úkoly
Jak: vytvoření a řízení nástroje systému Windows
Názorný postup: Vytvoření Průvodce
Koncepty
Automatizační objekt modelu grafu