I have a WinForm DataGridView that when I populate it with data the first item is selected by default. I don't want this to occur as to when an item is selected an event fires and some code is executed. Solutions I have for this is to unhook-bind-rehook the event or have a flag that is changed the first time the event fires after a new databind. However I was wondering if there is something a little more elegant.
|
I don't have a winforms app open to test, but I'm curious if you have an intervening BindingSource between your data and the datagridview? If so, what if you set
I often find it helpful to intervene a BindingSource object between the data and UI. It seems to help fix a lot of random issues, although I'm more accustomed to using DataTable objects as data rather than List<> objects. |
||||
|
What about (sorry, VB.NET but I'm sure you could convert):
|
|||
|
|
|
Use something like the following example:
Of course, check if there are rows, columns, and so on. It's just an example. |
|||
|
|
|
I had a similar problem (but I don't use the SelectionChanged event), and this works for me: In the constructor, after the binding is set, add a handler to the DataBindingComplete event:
The handler:
If you intend to select a row (e.g. after adding/inserting a new object), simply set:
Using this as a basis, I think it is possible to handle other events to react upon user selection. Hope this helps. |
|||
|
|
