MeetingGrid.cs 597 B

12345678910111213141516171819202122232425
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Windows;
  4. using Comal.Classes;
  5. using InABox.Core;
  6. using InABox.DynamicGrid;
  7. namespace PRSDesktop
  8. {
  9. public class MeetingGrid : DynamicDataGrid<Meeting>
  10. {
  11. protected override void DoReconfigure(DynamicGridOptions options)
  12. {
  13. base.DoReconfigure(options);
  14. options.Clear();
  15. options.AddRows = true;
  16. options.DeleteRows = true;
  17. options.EditRows = true;
  18. options.FilterRows = true;
  19. options.SelectColumns = true;
  20. }
  21. }
  22. }