标签: c# winforms visual-studio
我创建了一个自定义文本框,然后我覆盖了OnLeave事件。
OnLeave
protected overide void OnLeave(EventArgs e) { base.OnLeave(e); if (this.Text == "") { this.Text = "0"; } }
在表单中,我想在光标离开该自定义文本框时调用一些方法。如何制作自定义文本框在表单中保留事件以处理某些方法和OnLeave事件(覆盖)过程?