GrapeCity SPREAD for WPF 2.0J
InitializingNewItem イベント

GcSpreadGrid の新規行にデータが入力されたときに発生します。
構文
'Declaration
 
Public Event InitializingNewItem As EventHandler(Of InitializingNewItemEventArgs)
public event EventHandler<InitializingNewItemEventArgs> InitializingNewItem
イベント データ

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

プロパティ説明
NewItem新規行に対応するデータ項目を取得します。  
次のサンプルはInitializingNewItemイベントの使用方法を説明します。
private void SG2_InitializingNewItem(object sender, InitializingNewItemEventArgs e)
{
    // Initialize the new item of new row.
    // e.NewItem = new MyData();
}
Private Sub SG2_InitializingNewItem(sender As Object, e As InitializingNewItemEventArgs)
    ' Initialize the new item of new row.
    ' e.NewItem = new MyData();
End Sub
<sg:GcSpreadGrid Name="SG2" ItemsSource="{Binding}" CanUserAddRows="True" NewRowPosition="Top" InitializingNewItem="SG2_InitializingNewItem" />
参照

GcSpreadGrid クラス
GcSpreadGrid メンバ

 

 


Copyright © 2012 GrapeCity inc. All rights reserved.