Steps to create menus - C#.NET

Explain the steps to create menus.

.MenuItem item1=new MenuItem();
item1.text="item1";
item1.Value="one";
Menu1.items.add(item1);
What is Anchoring a control and Docking a control? - C#.NET
What is Anchoring a control and Docking a control? - Anchoring: used to resize controls dynamically with the form....
What is ErrorProvider control? - C#.NET
What is ErrorProvider control? - It is a control to provide a feedback about another control that has an error...
Different types of windows control in .NET
Explain the different types of windows control you can create in .NET - Common controls: textbox, button...
Post your comment