我想编辑单元格而不是它的值但是它的背景颜色。我知道rowIndex和columnIndex。但是,通过电网进行交叉是一件困难的事情。我只想要像
这样的东西DataGrid.Rows [0] [3] = .BackgroundColor WhateverIWant
即使在VisualTreeHelper的帮助下循环也可以,但请引导我完成它。
由于
答案 0 :(得分:1)
使用以下方法:
public static DataGridCell GetDataGridCell(DataGrid grid, int rowIndex, int colIndex)
{
DataGridCell result = null;
DataGridRow row = (DataGridRow)grid.ItemContainerGenerator.ContainerFromIndex(rowIndex);
if (row != null)
{
DataGridCellsPresenter presenter = GetFirstVisualChild<DataGridCellsPresenter>(row);
result = presenter.ItemContainerGenerator.ContainerFromIndex(colIndex) as DataGridCell;
}
return result;
}
public static T GetFirstVisualChild<T>(DependencyObject depObj)
{
if (depObj != null)
{
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
{
DependencyObject child = VisualTreeHelper.GetChild(depObj, i);
if (child != null && child is T)
{
return (T)child;
}
T childItem = GetFirstVisualChild(child);
if (childItem != null) return childItem;
}
}
return null;
}
您也可以将其作为DataGrid上的扩展方法