0
我想根據單元格值在wpf datagrid中查找行索引。我該怎麼做 ?我如何找到行索引?
例如
gataGrid.SelectedIndex = dataGrid.CellValue('abcde')
感謝
我想根據單元格值在wpf datagrid中查找行索引。我該怎麼做 ?我如何找到行索引?
例如
gataGrid.SelectedIndex = dataGrid.CellValue('abcde')
感謝
我發現這樣的孤子
foreach (DataRowView row in dataGrid.Items)
{
if (row.Row.ItemArray.Contains('value'))
{
dataGrid.SelectedIndex = dataGrid.Items.IndexOf(row);
dataGrid.ScrollIntoView(row);
break;
}
else
{
}
}
你在一列或所有的細胞期待? – Plue
提供更多上下文。一行有多個單元格,您要評估哪個單元格以確定您是否找到了您的行? –
我需要選擇行。我從SQL表中找到LINQ的單元值。但是datagridview索引和SQL表索引是不同的。 –