.NET新手警报
使用Visual C#2008 Express Edition我不小心创建了一个按钮的点击事件.然后,我删除了自动创建的方法代码,导致错误,表示现在已经以加载代码的形式引用的函数不能再被找到.
从Form1.Designer.cs文件的InitializeComponent()函数中删除以下行…
this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
…似乎做的伎俩,但是,它使我感到非常脏,因为#region开始时的以下警告:
/// required method for Designer support - do not modify /// the contents of this method with the code editor.