バージョン

BeforeActionButtonPressed イベント (UltraCalculator)

アクションが起こる前に発生します。これにより、ユーザーはデフォルトの演算をキャンセルしたり、値を変更したりできます。
シンタックス
'宣言
 
Public Event BeforeActionButtonPressed As BeforeCalculateImmediateEventHandler
public event BeforeCalculateImmediateEventHandler BeforeActionButtonPressed
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、OnCalculateImmediateEventArgs 型の引数を受け取りました。次の OnCalculateImmediateEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
Cancel System.ComponentModel.CancelEventArgsから継承されます。 
CurrentValue CurrentValueを取得または設定します。
CurrentValueDecimal 現在の値を小数として取得または設定します。
Operation 演算文字列。この値は、ユーザーが変更したり、操作したりできます。
使用例
Private Sub UltraCalculatorDropDown1_BeforeActionButtonPressed(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinEditors.UltraWinCalc.OnCalculateImmediateEventArgs) Handles UltraCalculatorDropDown1.BeforeActionButtonPressed
    
    ' This event fires before a CalculatorButton with the Type designation of 'ActionButton' is pressed.
    ' This event provides the parameters of the calculation which are modifiable. The 
    ' event itself is cancellable.
    Debug.WriteLine("BeforeActionButtonPressed: Cancel = " + e.Cancel.ToString())
    Debug.WriteLine(String.Format("Params: Operation {0}, Current Value {1}", e.Operation, e.CurrentValue))

End Sub
using System.Diagnostics;

	private void ultraCalculatorDropDown1_BeforeActionButtonPressed(object sender, Infragistics.Win.UltraWinEditors.UltraWinCalc.OnCalculateImmediateEventArgs e)
	{
		
		// This event fires before a CalculatorButton with the Type designation of 'ActionButton' is pressed.
		// This event provides the parameters of the calculation which are modifiable. The 
		// event itself is cancellable.
		Debug.WriteLine("BeforeActionButtonPressed: Cancel = " + e.Cancel.ToString());
		Debug.WriteLine(string.Format("Params: Operation {0}, Current Value {1}",e.Operation, e.CurrentValue));

    }
参照