12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- 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);
- }
- public override void SaveItem(T item)
- {
- if (!Items.Contains(item))
- Items.Add(item);
- }
- }
- }
|