using InABox.Core; using InABox.DynamicGrid; namespace PRSDesktop; public class CountryGrid : DynamicDataGrid<Country> { protected override void DoReconfigure(DynamicGridOptions options) { base.DoReconfigure(options); options.MultiSelect = true; } }