代码如下,直接复制就可以运行。是一个窗体程序,运行后报错,而且错误处理无法捕捉。但是将menuItem2的ShortCut去掉或将MainMenu mnuMain1=new MainMenu()去掉,程序就正确。实在难以理解。高手们来看看呢using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;namespace WindowsApplication2
{
/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.MainMenu mnuMain;
private System.Windows.Forms.MenuItem menuItem1;
private System.Windows.Forms.MenuItem menuItem2;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null; public Form1()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
MainMenu mnuMain1=new MainMenu(); //
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
} /// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null) 
{
components.Dispose();
}
}
base.Dispose( disposing );
} #region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.mnuMain = new System.Windows.Forms.MainMenu();
this.menuItem1 = new System.Windows.Forms.MenuItem();
this.menuItem2 = new System.Windows.Forms.MenuItem();
// 
// mnuMain
// 
this.mnuMain.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.menuItem1});
// 
// menuItem1
// 
this.menuItem1.Index = 0;
this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
  this.menuItem2});
this.menuItem1.Text = "文件(&F)";
this.menuItem1.Shortcut=Shortcut.CtrlF;
// 
// menuItem2
// 
this.menuItem2.Index = 0;
this.menuItem2.Shortcut = System.Windows.Forms.Shortcut.CtrlV;
this.menuItem2.Text = "打开(&O)";
// 
// Form1
// 
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(509, 314);
this.Menu = this.mnuMain;
this.Name = "Form1";
this.Text = "Form1"; }
#endregion /// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main() 
{
Application.Run(new Form1());
}
}
}

解决方案 »

  1.   

    我想可能是一个窗体里面只能有一个主菜单MainMenu的存在的缘故.
    如果你想显示不同的人显示不同的菜单,可以根据用户角色设置MenuItem菜单项
      

  2.   

    一个主窗体可以有多个主菜单,我试过了。而且通过this.Menu=...可以改变主菜单。
    就我上面程序有问题……
      

  3.   

    直接复制就可以运行。显示一个窗体程序,运行后没有报错,而且错误处理无法捕捉。
    将menuItem2的ShortCut去掉没有报错
    将MainMenu mnuMain1=new MainMenu()去掉,仍然没有报错可惜不能帖图给你看
      

  4.   

    验证了,怎么都没有错建议楼主关闭IDE,然后重开试试或许不是这里的问题