コード例 #1
0
ファイル: GridView.cs プロジェクト: tenshino/RainstormStudios
 protected void OnItemDataBound(GridViewItemEventArgs e)
 {
     if (this.ItemDataBound != null)
         this.ItemDataBound.Invoke(this, e);
 }
コード例 #2
0
ファイル: GridView.cs プロジェクト: tenshino/RainstormStudios
 protected void OnItemCreated(GridViewItemEventArgs e)
 {
     if (this.ItemCreated != null)
         this.ItemCreated.Invoke(this, e);
 }