我似乎在DataGridView
更新DataSource
. 正如您在下面的代码中看到的那样,我目前有一个查询DataSource
集。Linq
With dgvTrophies
' Automatically generate the DataGridView columns.
.AutoGenerateColumns = True
' Set up the data source.
.DataSource = From t In db.Trophies _
Where t.ShootId = shootIdProp _
Select New With {.Trophy = t.TrophyName, t.IDNo, t.Name, t.Score, .Sngls = t.SnglsClass.ToString, .Hcp = t.HcpYardage, .Dbls = t.DblsClass.ToString, .Category = t.Category.ToString, t.Printed}
' Automatically resize the visible rows.
.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.DisplayedCellsExceptHeaders
' Set the DataGridView control's border.
.BorderStyle = BorderStyle.FixedSingle
' Set the Editing mode for User
.EditMode = DataGridViewEditMode.EditOnKeystroke
' Hides the Row Headers
.RowHeadersVisible = False
End With
编辑单元格时它不会更新数据库,据我了解,aDataGridView
将使用您输入的内容自动更新数据库。
我在互联网上做了很多环顾四周,并没有找到任何东西。如果有人可以为我提供解决方案或为我指出正确的方向,我将不胜感激。