用户控件UserControl没有AcceptButton 怎么办?
只需要在:用户控件的 Load事件中加上
//Load事件
1 private void SeoSiteAll_Load(object sender, EventArgs e)
2 {
3 if (this.TopLevelControl is Form)
4 {
5 ((Form)this.TopLevelControl).AcceptButton = btn_Start;
6 }
7 }
2 {
3 if (this.TopLevelControl is Form)
4 {
5 ((Form)this.TopLevelControl).AcceptButton = btn_Start;
6 }
7 }
//按钮点击事件
1 private void BtnStartClick(object sender, EventArgs e)
2 {
3 Process.Start("http://www.8kmm.com");
4 }
2 {
3 Process.Start("http://www.8kmm.com");
4 }