Events Fired When DataGridView.SelectAll Called
What events are fired when .SelectAll()
is called on a DataGr开发者_运维知识库idView
? I want to intercept some cell selection without having to inherit another DataGridView
and override the SelectAll()
method.
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.
精彩评论