Welcome to the WinForms feedback portal. We’re happy you’re here! If you have feedback on how to improve the WinForms, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

I've got SfDataGrid with SelectionMode set to GridSelectionMode.Multiple and added selector column:

sfdg.Columns.Add(new GridCheckBoxSelectorColumn() { MappingName = "SelectorColumn", HeaderText = string.Empty, AllowCheckBoxOnHeader = true, Width = 34, CheckBoxSize = new Size(14, 14) });

When there is no selected rows in selector column and user is pressing arrow up/arrow down key using keyboard, focus is moved up/down and first focused row is automatically selected (which should not happen - it should move selector up or down without selecting any rows).