设置DataGrid SelectedItem不选择网格中的项目

问题描述 投票:0回答:1

我有一个 Avalonia DataGrid。 ItemSource 和 SelectedItem 绑定在 axaml 中。 刷新集合后,DataGrid 失去焦点,SelectedItem 变为 null。 我想将选定的项目恢复到 DataGrid 上。 我尝试在 DataGrid_SelectionChanged 事件中设置 SelectedItem,但它没有按预期工作。

datagrid selecteditem avaloniaui avalonia
1个回答
0
投票

找到解决方案:

private void DataGrid_SelectionChanged(object? sender, SelectionChangedEventArgs e)
{
    var indexItem = ViewList.FirstOrDefault(f => f.Id == e.RemovedItems[0].Id);
    if(indexItem != null)
    {
        DataGrid.SelectedIndex = ViewList.IndexOf(indexItem);
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.