コード例 #1
0
 protected void AddKeyEditingFinished(object sender, PropertyEditingFinishedEventArgs e)
 {
     if (e.Reason == FinishReason.UserAccept)
     {
         AddKeyButtonPressed(sender, e);
     }
 }
コード例 #2
0
 void stringEditor_EditingFinished(object sender, PropertyEditingFinishedEventArgs e)
 {
     this.Select();
     if (!this.isTextValid || this.isValueClamped)
     {
         System.Media.SystemSounds.Beep.Play();
     }
     if (this.isTextValid)
     {
         this.EmitEditingFinished(this.value, e.Reason);
     }
     this.SetTextFromValue();
     this.EmitInvalidate();
 }
コード例 #3
0
 private void stringEditor_EditingFinished(object sender, PropertyEditingFinishedEventArgs e)
 {
     this.OnEditingFinished(e.Reason);
 }
コード例 #4
0
 protected void AddKeyEditingFinished(object sender, PropertyEditingFinishedEventArgs e)
 {
     if (e.Reason == FinishReason.UserAccept)
         AddKeyButtonPressed(sender, e);
 }
コード例 #5
0
		void stringEditor_EditingFinished(object sender, PropertyEditingFinishedEventArgs e)
		{
			this.Select();
			if (!this.isTextValid || this.isValueClamped) System.Media.SystemSounds.Beep.Play();
			if (this.isTextValid) this.EmitEditingFinished(this.value, e.Reason);
			this.SetTextFromValue();
			this.EmitInvalidate();
		}
コード例 #6
0
 private void numEditor_EditingFinished(object sender, PropertyEditingFinishedEventArgs e)
 {
     this.OnEditingFinished(e.Reason);
     this.PerformGetValue();
 }
コード例 #7
0
 private void numEditor_EditingFinished(object sender, PropertyEditingFinishedEventArgs e)
 {
     this.OnEditingFinished(e.Reason);
     this.PerformGetValue();
 }
コード例 #8
0
 private void stringEditor_EditingFinished(object sender, PropertyEditingFinishedEventArgs e)
 {
     this.OnEditingFinished(e.Reason);
 }