在我的一个 C# Winform 中,我有一个 DataGridView,当用户按下刷新按钮时我会更新它。
问题是所选行在此过程中丢失。
我希望能够做到以下几点:
private void function Refresh()
{
UpdateBegin(); // Keep the selected row in memory
Update();
UpdateEnd(); // Apply the selected row to the DataGridView
}
这是更新功能。它更新数据源,清除所有列并使用正确的标题文本带回所需的列:
private void Update()
{
allItem = DataRepository.LotProvider.GetByIdProduit(detail.IdProduit)
dataGridView1.DataSource = allItem;
dataGridView1.Columns.Clear();
// Get a dictionary of the required column ID / shown text
Dictionary<string, string> dictionary = InitDisplayedFields();
foreach (KeyValuePair<string, string> column in dictionary)
// If the grid does not contain the key
if (!dataGridView1.Columns.Contains(column.Key))
{
// Add the column (key-value)
int id = dataGridView1.Columns.Add(column.Key, column.Value);
// Bind the property
dataGridView1.Columns[id].DataPropertyName = column.Key;
}
}
但是,我的 DataGridView 的 selected rows 属性是只读的。
有解决方法吗?