Vorgehensweise: Definieren der Z-Sortierung angedockter ToolStrip-Steuerelemente
Um ein ToolStrip Steuerelement korrekt beim Andocken zu positionieren, müssen Sie das Steuerelement in der Z-Reihenfolge des Formulars richtig positionieren.
Beispiel
Im folgenden Codebeispiel wird das Anordnen eines ToolStrip-Steuerelements und eines angedockten MenuStrip-Steuerelements veranschaulicht, indem die Z-Ordnung angegeben wird.
public Form2()
{
// Create a new ToolStrip control.
ToolStrip ts = new ToolStrip();
// Populate the ToolStrip control.
ts.Items.Add("Apples");
ts.Items.Add("Oranges");
ts.Items.Add("Pears");
ts.Items.Add(
"Change Colors",
null,
new EventHandler(ChangeColors_Click));
// Create a new MenuStrip.
MenuStrip ms = new MenuStrip();
// Dock the MenuStrip control to the top of the form.
ms.Dock = DockStyle.Top;
// Add the top-level menu items.
ms.Items.Add("File");
ms.Items.Add("Edit");
ms.Items.Add("View");
ms.Items.Add("Window");
// Add the ToolStrip to Controls collection.
this.Controls.Add(ts);
// Add the MenuStrip control last.
// This is important for correct placement in the z-order.
this.Controls.Add(ms);
}
Class Form2
Inherits Form
Public Sub New()
' Create a new ToolStrip control.
Dim ts As New ToolStrip()
' Populate the ToolStrip control.
ts.Items.Add("Apples")
ts.Items.Add("Oranges")
ts.Items.Add("Pears")
ts.Items.Add("Change Colors", Nothing, New EventHandler(AddressOf ChangeColors_Click))
' Create a new MenuStrip.
Dim ms As New MenuStrip()
' Dock the MenuStrip control to the top of the form.
ms.Dock = DockStyle.Top
' Add the top-level menu items.
ms.Items.Add("File")
ms.Items.Add("Edit")
ms.Items.Add("View")
ms.Items.Add("Window")
' Add the ToolStrip to Controls collection.
Me.Controls.Add(ts)
' Add the MenuStrip control last.
' This is important for correct placement in the z-order.
Me.Controls.Add(ms)
End Sub
' This event handler is invoked when the "Change colors"
' ToolStripItem is clicked. It assigns the Renderer
' property for the ToolStrip control.
Sub ChangeColors_Click(ByVal sender As Object, ByVal e As EventArgs)
ToolStripManager.Renderer = New ToolStripProfessionalRenderer(New CustomProfessionalColors())
End Sub
End Class
Die Z-Reihenfolge wird durch die Reihenfolge bestimmt, in der zuerst ToolStrip und anschließend MenuStrip erscheinen.
Steuerelemente werden der Controls Auflistung des Formulars hinzugefügt.
// Add the ToolStrip to Controls collection.
this.Controls.Add(ts);
// Add the MenuStrip control last.
// This is important for correct placement in the z-order.
this.Controls.Add(ms);
' Add the ToolStrip to Controls collection.
Me.Controls.Add(ts)
' Add the MenuStrip control last.
' This is important for correct placement in the z-order.
Me.Controls.Add(ms)
Kehren Sie die Reihenfolge dieser Aufrufe der Add-Methode um und zeigen Sie den Effekt auf das Layout an.
Kompilieren des Codes
In diesem Beispiel ist Folgendes erforderlich:
- Verweise auf die Assemblys System.Design, System.Drawing und System.Windows.Forms.
Siehe auch
.NET Desktop feedback