为了账号安全,请及时绑定邮箱和手机立即绑定

自定义控件的一个问题 ?WINFORM。

自定义控件的一个问题 ?WINFORM。

翻过高山走不出你 2018-12-06 16:42:29
 public ComboxSex()         {             try             {                 this.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;                 this.FormattingEnabled = true;                 this.Items.AddRange(new object[] { "男", "女" });                 //label = new System.Windows.Forms.Label();                 //label.Text = "性别";                 //this.Controls.Add (label);                 this.TextChanged += new EventHandler(ComboxSex_TextChanged);             }             catch (Exception ex)             {                 throw ex;             }         } 当在窗体 画此控件的时候。             this.comboxSex1 = new WindowsControlLibrary2.ComboxSex();             this.SuspendLayout();             //             // comboxSex1             //             this.comboxSex1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;             this.comboxSex1.FormattingEnabled = true;             this.comboxSex1.Items.AddRange(new object[] {             "男",             "女"}); new 的时候执行了一次。 为什么会出红色的代码。如何取消。
查看完整描述

2 回答

?
拉莫斯之舞

TA贡献1820条经验 获得超10个赞

把那些代码放到Loaded事件里,别放到构造函数里.
查看完整回答
反对 回复 2019-01-21
  • 2 回答
  • 0 关注
  • 359 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信