Add user rating editing to grid

This commit is contained in:
Michael Bucari-Tovo 2022-12-30 17:00:16 -07:00
parent 3a44bef0d9
commit c900fe8461
24 changed files with 942 additions and 62 deletions

View file

@ -40,6 +40,8 @@ namespace LibationWinForms.GridView
EnableDoubleBuffering();
gridEntryDataGridView.Scroll += (_, s) => Scroll?.Invoke(this, s);
removeGVColumn.Frozen = false;
gridEntryDataGridView.EditMode = DataGridViewEditMode.EditOnEnter;
}
private void EnableDoubleBuffering()
@ -49,6 +51,8 @@ namespace LibationWinForms.GridView
propertyInfo.SetValue(gridEntryDataGridView, true, null);
}
#region Button controls
private void DataGridView_CellContentClick(object sender, DataGridViewCellEventArgs e)
{