What events are fired when .SelectAll() is called on a DataGridView? I want to intercept some cell selection without having to inherit another DataGridView and override the SelectAll() method.
What events are fired when .SelectAll() is called on a DataGridView ? I want
Share
It turns out that SelectionChanged is fired after much troubleshooting. It would help if the MSDN documentation told you that when it details the SelectAll method.