请介意我还是初学者:
我正在用c#中的windows窗体创建一个程序。但是,在我遇到一些同步问题之后,主表单加载器不能正常工作。我用有限的知识检查了代码,但我似乎找不到任何错误?
这是代码(mainfrm.designer.cs:1):
...
this.Name = "frm_Main";
this.Load += new System.EventHandler(this.frm_Main_Load);
this.menuStrip1.ResumeLayout(false);
...
这是我的装载机(mainfrm.cs)
private void frm_Main_Load(object sender, EventArgs e)
{
Everything i do here does not get executed.
}
有没有人看到这个问题?