gpt4 book ai didi

c# - 从 WPF 数据网格中删除行

转载 作者:太空狗 更新时间:2023-10-29 21:58:35 26 4
gpt4 key购买 nike

我有一个 WPF DataGrid theDataGrid 绑定(bind)到一个包含表格的 DataSet ds。我想让用户通过首先在网格中选择它们然后按下一个按钮(位于数据网格之外的某个地方)来删除线。我终于得到了以下代码行,它们可以执行我想要的操作,但我认为它们相当丑陋:

  DataSet ds = new DataSet();
...
// fill ds somehow
...
private void ButtonClickHandler(object Sender, RoutedEventArgs e)
{
List<DataRow> theRows = new List<DataRow>();
for (int i = 0; i < theDataGrid.SelectedItems.Count; ++i)
{
// o is only introduced to be able to inspect it during debugging
Object o = theDataGrid.SelectedItems[i];
if (o != CollectionView.NewItemPlaceholder)
{
DataRowView r = (DataRowView)o;
theRows.Add(r.Row);
}
}
foreach(DataRow r in theRows)
{
int k = ds.Tables["producer"].Rows.IndexOf(r);
// don't remove() but delete() cause of update later on
ds.Tables[0].Rows[k].Delete();
}
}

有更好的方法吗?例如。一个只需要一个循环且无需显式检查 NewItemPlaceHolder 的方法,或者可能是一种更有效的方法来访问要删除的行?

(我已经知道我不能在第一个循环中从 ds 中删除任何东西,从那时起每次执行循环时 theDataGrid.SelectedItems.Count 都会改变...)

最佳答案

为了删除按钮上选择的行,您可以尝试:

private void ButtonClickHandler(object sender, RoutedEventArgs e)//Remove row selected
{
DataRowView dataRow = (DataRowView)dataGridCodes.SelectedItem; //dataRow holds the selection
dataRow.Delete();
}

关于c# - 从 WPF 数据网格中删除行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14031814/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com