バージョン

SummaryResultChanged イベント

要約情報が計算または再計算されたときに発生します。
シンタックス
'宣言
 
Public Event SummaryResultChanged As EventHandler(Of SummaryResultChangedEventArgs)
public event EventHandler<SummaryResultChangedEventArgs> SummaryResultChanged
イベント データ

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

プロパティ解説
Handled System.Windows.RoutedEventArgsから継承されます。Gets or sets a value that indicates the present state of the event handling for a routed event as it travels the route.
OriginalSource System.Windows.RoutedEventArgsから継承されます。Gets the original reporting source as determined by pure hit testing, before any possible System.Windows.RoutedEventArgs.Source adjustment by a parent class.
RoutedEvent System.Windows.RoutedEventArgsから継承されます。Gets or sets the System.Windows.RoutedEventArgs.RoutedEvent associated with this System.Windows.RoutedEventArgs instance.
Source System.Windows.RoutedEventArgsから継承されます。Gets or sets a reference to the object that raised the event.
SummaryResult 再計算された SummaryResult インスタンスを返します。
解説
SummaryResultChanged は、集計結果が計算または再計算されると発生します。
使用例
Imports Infragistics.Windows
Imports Infragistics.Windows.Editors
Imports Infragistics.Windows.DataPresenter

 Private Sub Dp_SummaryResultChanged(ByVal sender As Object, ByVal e As Infragistics.Windows.DataPresenter.Events.SummaryResultChangedEventArgs)
        Debug.WriteLine("New value of summary is " & e.SummaryResult.Value)
 End Sub
using Infragistics.Windows;
using Infragistics.Windows.Editors;
using Infragistics.Windows.DataPresenter;

		public void dp_SummaryResultChanged( object sender, Infragistics.Windows.DataPresenter.Events.SummaryResultChangedEventArgs e )
		{
			Debug.WriteLine( "New value of summary is " + e.SummaryResult.Value );
		}

<igDP:XamDataGrid x:Name="_dp" SummaryResultChanged="dp_SummaryResultChanged" />
参照