I use application.I want to change drop down menu location & size of menu item. I want to display like "Pic1" image. But it is displaying like "Pic2" image. How can I change this?
2 Answers, 1 is accepted
0
Ivan Todorov
Telerik team
answered on 04 Oct 2012, 08:06 AM
Hi Thi Han,
Thank you for contacting us.
In the Application menu, the size of the second-level popup should be the same as the size of the second column. However, you can alter this behavior by handling the DropDownOpening event of your first-level menu items. The following sample demonstrates this:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
foreach (RadMenuItem menuItem in this.radApplicationMenu1.Items)
{
menuItem.DropDownOpening += new CancelEventHandler(menuItem_DropDownOpening);