protected override void OnLeave(EventArgs e) { base.OnLeave(e); OnTextChanged(e); Cores.Out(this, this.Properties.ReadOnly); }
protected override void OnLeave(EventArgs e) { base.OnLeave(e); if (this.Properties.MinValue != 0 || this.Properties.MaxValue != 0) { this.Value = this.Value < this.Properties.MinValue ? this.Properties.MinValue : (this.Value > this.Properties.MaxValue ? this.Properties.MaxValue : this.Value); } Cores.Out(this, this.Properties.ReadOnly); }
protected override void OnLeave(EventArgs e) { base.OnLeave(e); Cores.Out(this, false); }