我的Windows Form Application
. 每个按钮都有自己的事件处理函数,总共有 1500 多行。
我希望将所有这些“回调”函数移动到单独的文件中(我可以使用)每次我使用表单设计器(设置不同的标签等)。partial class MainForm
MainForm
我的问题是如何防止 Microsoft Visual Studio 2010 一遍又一遍地重新创建这些原型?
事件处理程序原型示例:
private void exportSelectedItems_Click(object sender, EventArgs e)
{
throw new NotImplementedException();
}