123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using InABox.Clients;
- using InABox.Core;
- namespace InABox.DynamicGrid
- {
- public class FormControlGrid<T> : DynamicGrid<T> where T : DFLayoutControl, new()
- {
- public FormControlGrid()
- {
- Items = new List<T>();
- Options.AddRange(DynamicGridOption.RecordCount);
- }
- public List<T> Items { get; set; }
- protected override void DeleteItems(params CoreRow[] rows)
- {
- var items = new List<DFLayoutControl>();
- foreach (var row in rows)
- items.Add(Items[row.Index]);
- Items.RemoveAll(x => items.Contains(x));
- }
- protected override T LoadItem(CoreRow row)
- {
- return Items[row.Index];
- }
- protected override void Reload(Filters<T> criteria, Columns<T> columns, ref SortOrder<T> sort, Action<CoreTable, Exception> action)
- {
- var table = new CoreTable();
- table.LoadColumns(typeof(T));
- table.LoadRows(Items.OrderBy(x => x.Sequence));
- action?.Invoke(table, null);
- }
- protected override void SaveItem(T item)
- {
- if (!Items.Contains(item))
- Items.Add(item);
- }
- protected override Document LoadDocument(Guid id)
- {
- Document doc = null;
- if (id == Guid.Empty)
- doc = new Client<Document>().Load(new Filter<Document>(x => x.ID).IsEqualTo(id)).FirstOrDefault();
- if (doc == null)
- doc = new Document();
- return doc;
- }
- protected override Document FindDocument(string filename)
- {
- return new Client<Document>().Load(new Filter<Document>(x => x.FileName).IsEqualTo(filename)).FirstOrDefault();
- }
- protected override void SaveDocument(Document document)
- {
- new Client<Document>().Save(document, "");
- }
- }
- }
|