public void RemovewRow(wRow row)
 {
     this.Rows.Remove(row);
 }
 public wRowChangeEvent(wRow row, System.Data.DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddwRow(wRow row)
 {
     this.Rows.Add(row);
 }