Exemple #1
0
            public newsRow AddnewsRow(string Url, string Name, int MaxCount)
            {
                newsRow rownewsRow = ((newsRow)(this.NewRow()));

                rownewsRow.ItemArray = new object[] {
                    Url,
                    Name,
                    MaxCount
                };
                this.Rows.Add(rownewsRow);
                return(rownewsRow);
            }
 public newsRowChangeEvent(newsRow row, DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemovenewsRow(newsRow row) {
     this.Rows.Remove(row);
 }
 public void AddnewsRow(newsRow row) {
     this.Rows.Add(row);
 }
Exemple #5
0
 public newsRowChangeEvent(newsRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemple #6
0
 public void RemovenewsRow(newsRow row)
 {
     this.Rows.Remove(row);
 }
Exemple #7
0
 public void AddnewsRow(newsRow row)
 {
     this.Rows.Add(row);
 }