コード例 #1
0
            public countryRow AddcountryRow(string ct_code, string ct_name)
            {
                countryRow rowcountryRow = ((countryRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    ct_code,
                    ct_name
                };
                rowcountryRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowcountryRow);
                return(rowcountryRow);
            }
コード例 #2
0
ファイル: xmltv.Designer.cs プロジェクト: bietiekay/YAPS
 public countryRowChangeEvent(countryRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
コード例 #3
0
ファイル: xmltv.Designer.cs プロジェクト: bietiekay/YAPS
 public void RemovecountryRow(countryRow row) {
     this.Rows.Remove(row);
 }
コード例 #4
0
ファイル: xmltv.Designer.cs プロジェクト: bietiekay/YAPS
 public void AddcountryRow(countryRow row) {
     this.Rows.Add(row);
 }
コード例 #5
0
 public countryRowChangeEvent(countryRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #6
0
 public void RemovecountryRow(countryRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #7
0
 public void AddcountryRow(countryRow row)
 {
     this.Rows.Add(row);
 }