public void AddTypedSettingsRow(TypedSettingsRow row) {
     this.Rows.Add(row);
 }
 public void RemoveTypedSettingsRow(TypedSettingsRow row) {
     this.Rows.Remove(row);
 }
 public TypedSettingsRowChangeEvent(TypedSettingsRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }