示例#1
0
		/// <summary>
		/// Invoked when editing is finished.
		/// </summary>
		public void editingStopped(ChangeEvent @e)
		{
		}
示例#2
0
		/// <summary>
		/// Invoked when a column is moved due to a margin change.
		/// </summary>
		public void columnMarginChanged(ChangeEvent @e)
		{
		}
示例#3
0
		/// <summary>
		/// Invoked when editing is canceled.
		/// </summary>
		public void editingCanceled(ChangeEvent @e)
		{
		}
示例#4
0
 public virtual void stateChanged(ChangeEvent e)
 {
   if (this.getValueIsAdjusting())
     return;
   this.bindable.setBindableValue((double) this.getValue() * (this.max - this.min) / (double) this.pixelWidth + this.min);
 }