如题,在线等.........

解决方案 »

  1.   

    菜单控件的items属性
    string tempMenuString="";
    tempMenuString=菜单控件.Items[count].Text;如果想全部提取:
    string[] temparray=new string[菜单控件.items.count-1]
    for(int count=0;count<菜单控件.Items.Count;count++)
    {
         temparray[count]=菜单控件.Items[count].Text;
    }
      

  2.   

    如果要使之变灰:设置它的Enable属性为假就OK。建议楼主先看上一本C#书。或者用一本书来指导完成项目