public FilePathRow AddFilePathRow(string src, string type)
            {
                FilePathRow rowFilePathRow = ((FilePathRow)(this.NewRow()));

                rowFilePathRow.ItemArray = new object[] {
                    src,
                    type
                };
                this.Rows.Add(rowFilePathRow);
                return(rowFilePathRow);
            }
            public FilePathRow AddFilePathRow(string group, string src, string type)
            {
                FilePathRow rowFilePathRow = ((FilePathRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    group,
                    src,
                    type
                };
                rowFilePathRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowFilePathRow);
                return(rowFilePathRow);
            }
 public FilePathRowChangeEvent(FilePathRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveFilePathRow(FilePathRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddFilePathRow(FilePathRow row)
 {
     this.Rows.Add(row);
 }
示例#6
0
			public FilePathRowChangeEvent(FilePathRow row, global::System.Data.DataRowAction action) {
				this.eventRow = row;
				this.eventAction = action;
			}
示例#7
0
			public void RemoveFilePathRow(FilePathRow row) {
				this.Rows.Remove(row);
			}
示例#8
0
			public void AddFilePathRow(FilePathRow row) {
				this.Rows.Add(row);
			}
 public FilePathRowChangeEvent(FilePathRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
 public FilePathRowChangeEvent(FilePathRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }