Creates a default System.Windows.Forms.ToolStripMenuItem with the specified text, image, and event handler on a new System.Windows.Forms.ToolStripDropDownMenu.
- text
- The text to use for the System.Windows.Forms.ToolStripMenuItem. If the text parameter is a hyphen (-), this method creates a System.Windows.Forms.ToolStripSeparator.
- image
- The System.Drawing.Image to display on the System.Windows.Forms.ToolStripMenuItem.
- onClick
- An event handler that raises the ToolStripItem.Click event when the System.Windows.Forms.ToolStripMenuItem is clicked.
A System.Windows.Forms.ToolStripMenuItem, or a System.Windows.Forms.ToolStripSeparator if the text parameter is a hyphen (-).
Use the ToolStripDropDownMenu.CreateDefaultItem(string, System.Drawing.Image, EventHandler) method to add a System.Windows.Forms.ToolStripMenuItem with commonly used characteristics to a System.Windows.Forms.ToolStripDropDownMenu.