Exemplo n.º 1
0
 public MenuItem(string txt , MenuCallBack mc)
 {
     MC= mc;
        Text = txt;
 }
Exemplo n.º 2
0
 public void Add(string str, MenuCallBack mc)
 {
     menu.Add(new MenuItem(str , mc));
 }