Introduction
It is quite difficult to set the properties of toolstrip menu items like if you want to disable certain items or make them invisible. It is simple to set them individually, but if you want to iterate through all the items, it's quite difficult. This tip explains how you can iterate through all ToolStripMenuItem
s of a menu strip.
Background
The given code works on a recursive method call.
Using the Code
private void SetToolStripItems(ToolStripItemCollection dropDownItems)
{
try
{
foreach (object obj in dropDownItems)
{
ToolStripMenuItem subMenu = obj as ToolStripMenuItem;
if (subMenu != null)
{
if (subMenu.HasDropDownItems)
{
SetToolStripItems(subMenu.DropDownItems);
}
else
{
if (subMenu.Tag != null)
{
subMenu.Visible = UserRights.Where(x =>
x.FormID == Convert.ToInt32(subMenu.Tag)).First().CanAccess;
}
}
}
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "SetToolStripItems",
MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
Points of Interest
Recursive methods are quite useful when you don't know the depth of the loops.