i have toolstrip ex with "toolstripdropdownbuttons"... in that dropdown list i want to show some buttons
here is the code to loop for toolstrip items...
but how can i loop the dropdown list items....
i enclosed a snapshot of my design please check it once.....
foreach (ToolStripItem it in toolStripEx3.Items)
{
for (int a = 0; a < BtnsList.Count; a++)
{
if (BtnsList[a].ToString() == it.Text.ToString())
{
it.Visible = true;
}
}
}
Thanks in Advance....
Attachment:
toolstripdropdown_bc8a83fe.zip