CountryGrid.cs 279 B

12345678910111213
  1. using InABox.Core;
  2. using InABox.DynamicGrid;
  3. namespace PRSDesktop;
  4. public class CountryGrid : DynamicDataGrid<Country>
  5. {
  6. protected override void DoReconfigure(DynamicGridOptions options)
  7. {
  8. base.DoReconfigure(options);
  9. options.MultiSelect = true;
  10. }
  11. }