Getting Started with WinForms ApplicationMenu
The following tutorial demonstrates how to populate RadApplicationMenu and how to react to a user's choice in code.
1. Drag RadApplicationMenu to a form and click the Smart Tag.
2. Click the Edit Items button.
3. Add a few items.
4. Apply different images for each item.
5. In the Properties section in Visual Studio select the events button. Select the desired item from the Properties drop down and double click the Click event.
6. Replace the automatically generated event handler with this code:
Handling Click event
private void radMenuItem1_Click(object sender, EventArgs e)
{
RadMenuItem item = sender as RadMenuItem;
RadMessageBox.Show(item.Text + " is clicked!");
}
Private Sub RadMenuItem1_Click(sender As Object, e As EventArgs) Handles RadMenuItem1.Click
Dim item As RadMenuItem = TryCast(sender, RadMenuItem)
RadMessageBox.Show(item.Text + " is clicked!")
End Sub
See Also
Telerik UI for WinForms Learning Resources
- Telerik UI for WinForms ApplicationMenu Component
- Getting Started with Telerik UI for WinForms Components
- Telerik UI for WinForms Setup
- Telerik UI for WinForms Application Modernization
- Telerik UI for WinForms Visual Studio Templates
- Deploy Telerik UI for WinForms Applications
- Telerik UI for WinForms Virtual Classroom(Training Courses for Registered Users)
- Telerik UI for WinForms License Agreement)