コード例 #1
0
ファイル: ArtooBase.cs プロジェクト: ndabas/Artoo
        public BuddyRow AddBuddyRow(string id, UserRow parentUserRowByUser_Buddy)
        {
            BuddyRow rowBuddyRow = ((BuddyRow)(this.NewRow()));

            rowBuddyRow.ItemArray = new object[] {
                id,
                parentUserRowByUser_Buddy[3]
            };
            this.Rows.Add(rowBuddyRow);
            return(rowBuddyRow);
        }
コード例 #2
0
ファイル: ArtooBase.cs プロジェクト: ndabas/Artoo
 public BuddyRowChangeEvent(BuddyRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
ファイル: ArtooBase.cs プロジェクト: ndabas/Artoo
 public void AddBuddyRow(BuddyRow row)
 {
     this.Rows.Add(row);
 }
コード例 #4
0
ファイル: ArtooBase.cs プロジェクト: ndabas/Artoo
 public void RemoveBuddyRow(BuddyRow row)
 {
     this.Rows.Remove(row);
 }