Menu.IsParent Property
Gets a value indicating whether this menu contains any menu items. This property is read-only.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The following code example creates a MainMenu with two MenuItem objects. It then uses the IsParent property to determine whether mainMenu1 contains menu items. If the condition evaluates true, it sets the RightToLeft property to true and binds the main menu to the Form. This example requires that you have a Form created that is named Form1.
public void CreateMyMainMenu() { // Create two MenuItem objects and assign to array. MenuItem menuItem1 = new MenuItem(); MenuItem menuItem2 = new MenuItem(); menuItem1.Text = "&File"; menuItem2.Text = "&Edit"; // Create a MainMenu and assign MenuItem objects. MainMenu mainMenu1 = new MainMenu(new MenuItem[] { menuItem1, menuItem2}); // Determine whether mainMenu1 contains menu items. if (mainMenu1.IsParent) { // Set the RightToLeft property for mainMenu1. mainMenu1.RightToLeft = RightToLeft.Yes; // Bind the MainMenu to Form1. Menu = mainMenu1; } }
-
SecurityPermission
for operating with unmanaged code. Associated enumeration: UnmanagedCode
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.