Esempio n. 1
0
            public _mod_projectRow Add_mod_projectRow(string _build_path)
            {
                _mod_projectRow row_mod_projectRow = ((_mod_projectRow)(this.NewRow()));

                row_mod_projectRow.ItemArray = new object[] {
                    _build_path,
                    null
                };
                this.Rows.Add(row_mod_projectRow);
                return(row_mod_projectRow);
            }
Esempio n. 2
0
            public fileRow AddfileRow(string path, string build, _mod_projectRow _parent_mod_projectRowBymod_project_file)
            {
                fileRow rowfileRow = ((fileRow)(this.NewRow()));

                rowfileRow.ItemArray = new object[] {
                    path,
                    build,
                    _parent_mod_projectRowBymod_project_file[1]
                };
                this.Rows.Add(rowfileRow);
                return(rowfileRow);
            }
Esempio n. 3
0
 public _mod_projectRowChangeEvent(_mod_projectRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 4
0
 public void Remove_mod_projectRow(_mod_projectRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 5
0
 public void Add_mod_projectRow(_mod_projectRow row)
 {
     this.Rows.Add(row);
 }