| 12345678910111213141516171819202122232425 |
- using System.Collections.Generic;
- using System.Linq;
- using System.Windows;
- using Comal.Classes;
- using InABox.Core;
- using InABox.DynamicGrid;
- namespace PRSDesktop
- {
-
- public class MeetingGrid : DynamicDataGrid<Meeting>
- {
- protected override void DoReconfigure(DynamicGridOptions options)
- {
- base.DoReconfigure(options);
- options.Clear();
- options.AddRows = true;
- options.DeleteRows = true;
- options.EditRows = true;
- options.FilterRows = true;
- options.SelectColumns = true;
- }
- }
- }
|