A
AboutJAV
I created a mainmenu in the form class. I added the following code
public delegate void ChangeMainMenuDelegate(bool bState);
public void ChangeMainMenuState(bool bState)
{
for (int n = 0; n < mainmenu.menuitems.count; n++)
{
mainmenu.menuitems[n].Enabled = bState;
}
}
I want to call the delegate from another class (View class)
How do I do this?
Thanks
public delegate void ChangeMainMenuDelegate(bool bState);
public void ChangeMainMenuState(bool bState)
{
for (int n = 0; n < mainmenu.menuitems.count; n++)
{
mainmenu.menuitems[n].Enabled = bState;
}
}
I want to call the delegate from another class (View class)
How do I do this?
Thanks