A set of .NET Framework managed libraries for developing graphical user interfaces.
Hi BrandonStewart-4522,
Starting in .NET Core 3.1, some Windows Forms controls have changed.
More details you can refer to this document.
And the Desktop Guide documentation for .NET 5 (and .NET Core) and is under construction.
Please refer to this document.
Viorel-1 has provided a method that add submenu in Properties panel.
You can also add these with code:
First, you can add an item to MenuStrip control with following code:
menuStrip1.Items.Add("Item title");
Then to add a sub-menu, you can take an existing item and using DropDownItems to add.
(menuStrip1.Items[0] as ToolStripMenuItem).DropDownItems.Add("sub menu");
Best Regards,
Daniel Zhang
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.