public void AddtSettingsRow(tSettingsRow row) {
     this.Rows.Add(row);
 }
 public void RemovetSettingsRow(tSettingsRow row) {
     this.Rows.Remove(row);
 }
 public tSettingsRowChangeEvent(tSettingsRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }