データグリッドのいくつかのセルをマークして、マークされたセルの色を変更したいと考えています。単一のセルのコードでこれを行うことができます:
public static DataGridRow GetRow(this DataGrid dataGrid, int index)
{
DataGridRow row = (DataGridRow)dataGrid.ItemContainerGenerator.ContainerFromIndex(index);
if (row == null)
{
dataGrid.UpdateLayout();
dataGrid.ScrollIntoView(dataGrid.Items[index]);
row = (DataGridRow)dataGrid.ItemContainerGenerator.ContainerFromIndex(index);
}
return row;
}
public static int GetRowIdx(this DataGrid dataGrid, DataGridCellInfo cellInfo)
{
// Use reflection to get DataGridCell.RowDataItem property value.
DataGridRow row = (DataGridRow)dataGrid.ItemContainerGenerator.ContainerFromItem(cellInfo.Item);
if (row == null)
throw new NullReferenceException("Fehler: Keine Index gefunden da DataGridRow null!");
return row.GetIndex();
}
public static DataGridCell GetCurrentCell(this DataGrid dataGrid)
{
int row = GetRowIdx(dataGrid, dataGrid.CurrentCell);
int column = dataGrid.CurrentColumn.DisplayIndex;
return GetCell(dataGrid, row, column);
}
呼びだし:
DataGridCell currentCell = DataGridExtension.GetCurrentCell(dataGrid1);
currentCell.Background = Brushes.LightGray;
誰かがこのコードを変更する方法を知っているので、たとえば5つのセルをマークして色を変更できますか?