Hi,
I use C1Menu to create my menu. Now i want to change background color for menu items list (after i click an item, one items list drops down) :
Default with white color:
After changing:
Thank you so much !
Hello,
Give this code a try within your C1Menu's click event.
foreach (C1MenuItemBase item in e.Item.Owner.Items) { item.ControlStyle.BackColor = System.Drawing.Color.Red; } -OR-
foreach (C1MenuItemBase item in e.Item.Items) { item.ControlStyle.BackColor = System.Drawing.Color.Red; }I hope this helps!-Raleigh