这样应该就好了
public partial class MyTextBox: TextBox { public event EventHandler MaxValueChanged; protected virtual void OnMaxValueChanged(EventArgs e) { EventHandler handler = this.MaxValueChanged; if (handler != null) handler(this, e); } private int maxValue; public int MaxValue { get {return maxValue;} set {maxValue = value; OnMaxValueChanged(EventArgs.Empty);} } }