Пример #1
0
 protected virtual void OnSpinChanged(SpinChangedEventArgs e)
 {
     if (this.SpinChanged != null)
     {
         this.SpinChanged(this, e);
     }
 }
Пример #2
0
 private void OnPlusButtonSpinChanged(object sender, SpinChangedEventArgs e)
 {
     if (!this.Focused)
     {
         this.TextBoxShow();
     }
     this.ParseText(true, false);
     this.Value += this.m_increment * Convert.ToDecimal(Math.Pow(10.0, (double)(e.IncreaseRate - 1)));
 }
Пример #3
0
 private void OnPlusButtonSpinChanged(object sender, SpinChangedEventArgs e)
 {
     if (!this.Focused)
     {
         this.TextBoxShow();
     }
     this.ParseText(true, false);
     this.Value += this.m_increment * Convert.ToDecimal(Math.Pow(10.0, (double) (e.IncreaseRate - 1)));
 }
Пример #4
0
 protected virtual void OnSpinChanged(SpinChangedEventArgs e)
 {
     if (this.SpinChanged != null)
     {
         this.SpinChanged(this, e);
     }
 }