public ListSearchTableRow AddListSearchTableRow(int Form, long GroupID, string Group, long MyKeyID, string Search, string Supplement)
            {
                ListSearchTableRow rowListSearchTableRow = ((ListSearchTableRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Form,
                    GroupID,
                    Group,
                    MyKeyID,
                    Search,
                    Supplement
                };
                rowListSearchTableRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowListSearchTableRow);
                return(rowListSearchTableRow);
            }
 public ListSearchTableRowChangeEvent(ListSearchTableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveListSearchTableRow(ListSearchTableRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddListSearchTableRow(ListSearchTableRow row)
 {
     this.Rows.Add(row);
 }