コード例 #1
0
            public binded_testsRow Addbinded_testsRow(int idx, string name, int chidx, string ch_name, int type, string descr)
            {
                binded_testsRow rowbinded_testsRow = ((binded_testsRow)(this.NewRow()));

                rowbinded_testsRow.ItemArray = new object[] {
                    idx,
                    name,
                    chidx,
                    ch_name,
                    type,
                    descr
                };
                this.Rows.Add(rowbinded_testsRow);
                return(rowbinded_testsRow);
            }
コード例 #2
0
 public binded_testsRowChangeEvent(binded_testsRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void Removebinded_testsRow(binded_testsRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public void Addbinded_testsRow(binded_testsRow row)
 {
     this.Rows.Add(row);
 }