![]() |
Grouping Menu Items |
|
Menu Separators |
|
As we will see in later sections, there are various ways you can make a menu look good and you have many options to configure menu items. One of the ways you can manage menu items is to group them in small entities of your choice. You can do this either for the looks or for aesthetic reasons. A menu separator is a horizontal line among some menu items to visually divide them. Here is an example: |
|
There are two reasons you would use a separator. You can use a separator just for aesthetic reasons, to make your menu look good. Another, more valuable reason, is to create groups of menu items and show their belonging together by showing a line separating one group from another. To visually specify a separator, when creating the menu item, set its string to a simple -. To support menu separators, the .NET Framework provides the ToolStripSeparator class, which is derived from ToolStripItem. To programmatically create a separator, declare a handle to ToolStripSeparator, initialize it using the new operator, add it to the Items property of the ToolStripItem menu category that will hold the separator. Here is an example: Imports System.Drawing
Imports System.Windows.Forms
Module Exercise
Public Class Starter
Inherits Form
Private mnuMain As MenuStrip
Private mnuFile As ToolStripMenuItem
Private mnuFileNew As ToolStripMenuItem
Private mnuSeparator As ToolStripSeparator
Friend WithEvents mnuFileExit As ToolStripMenuItem
Dim components As System.ComponentModel.Container
Public Sub New()
InitializeComponent()
End Sub
Public Sub InitializeComponent()
mnuMain = New MenuStrip
Controls.Add(mnuMain)
mnuFile = New ToolStripMenuItem("&File")
mnuFileNew = New ToolStripMenuItem("&New")
mnuFileNew.ShortcutKeys = Keys.Control Or Keys.N
mnuSeparator = New ToolStripSeparator
mnuFileExit = New ToolStripMenuItem("E&xit")
mnuFile.DropDownItems.Add(mnuFileNew)
mnuFile.DropDownItems.Add(mnuSeparator)
mnuFile.DropDownItems.Add(mnuFileExit)
mnuMain.Items.Add(mnuFile)
End Sub
Private Sub FileExiting(ByVal sender As Object, _
ByVal e As EventArgs) _
Handles mnuFileExit.Click
End
End Sub
End Class
Function Main() As Integer
Dim frmStart As Starter = New Starter
Application.Run(frmStart)
Return 0
End Function
End Module
This would produce:
If you have menu items that perform similar tasks, you can put them in a group, which you can do using line separators. Another option is to create the menu items in their own group. The group of menu items that are created as children of a parent menu is referred to as a sub-menu. Here is an example of a sub-menu in Microsoft Paint:
To visually create a sub-menu, under the form, click the menu control that will hold the items. In the menu designer
After selecting the eventual parent of the intended sub-menu, click the right Type Here box, type the desired caption and optionally give it a name. To create another item for the sub-menu, you can click the Type Here box under the previous one. In the same way, you can add as many items as you judge necessary. Here is an example:
You can also create a sub-menu for a menu item that itself is a sub-menu. Here is an example:
To create a sub-menu for an item A that itself is a sub-menu, click that menu item A, click the Type Here box on the right side, and type its caption. As another technique, after selecting the menu item that will act as the parent of the sub-menu, in the Properties window, click the ellipsis button of the DropDownItems field to open the Items Collection Editor dialog box. To create an item for the sub-menu, in the top combo box, select MenuItem and click Add. Then configure the menu item as see fit (Text, (Name), etc). Like any menu item, each sub-menu item is an object of type ToolStripMenuItem. Therefore, to programmatically create a sub-menu, create each ToolStripMenuItem item and add it to the ToolStripMenuItem menu item that will act as its parent.
|
|
|
||
| Previous | Copyright © 2008-2012 FunctionX | Next |
|
|
||