I am having problems working with DataGridViews in C# when I want to have it bound to Lists of objects.
Can anyone recommend a thorough guide on how to work with them in this situation? Possibly through a BindingSource? When googling the help I found was either "bind it to a database" or not very helpful.
Also I have seen this problem on two computers with Visual Studio. I make a blank project and put a DataGridView on the form, then add a DataGridViewComboBoxColumn and some other columns.
When I run the project the ComboBox needs to be clicked about three times before it drops down. The first time you click it nothing happens, the next time you click it the line between the bulk of the box and the down arrow disappears, then the next time you click it, it actually works
Perhaps someone could recommend a simpler alternative to a DataGridView? All I want to do is have a simple table like in Excel that I can populate with data and have an event fired when new data is entered
Can anyone recommend a thorough guide on how to work with them in this situation? Possibly through a BindingSource? When googling the help I found was either "bind it to a database" or not very helpful.
Also I have seen this problem on two computers with Visual Studio. I make a blank project and put a DataGridView on the form, then add a DataGridViewComboBoxColumn and some other columns.
When I run the project the ComboBox needs to be clicked about three times before it drops down. The first time you click it nothing happens, the next time you click it the line between the bulk of the box and the down arrow disappears, then the next time you click it, it actually works

Perhaps someone could recommend a simpler alternative to a DataGridView? All I want to do is have a simple table like in Excel that I can populate with data and have an event fired when new data is entered

Last edited: