コード例 #1
0
        protected override void OnLeave(EventArgs e)
        {
            base.OnLeave(e);

            OnTextChanged(e);

            Cores.Out(this, this.Properties.ReadOnly);
        }
コード例 #2
0
        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);
        }
コード例 #3
0
        protected override void OnLeave(EventArgs e)
        {
            base.OnLeave(e);

            Cores.Out(this, false);
        }