答案 0 :(得分:0)
我假设yr网格绑定到items / object,所以如果你想更改该列或行中的值,你可以在你的网格点击事件或你正在使用的事件中使用它
MyObject rowObject = gridObjects.GetFocusedRow as MyObject;
if (rowObject != null)
{
}
答案 1 :(得分:0)
很难理解你的问题,如果你能添加更多信息,我相信你会得到一个好的答案。
你有什么尝试?你能在问题中添加更多的代码(和上下文)吗?
你看过MSDN了吗?以下是获取单元格值的一种方法: http://msdn.microsoft.com/en-us/library/z5c4a30a.aspx
private void GetCellValue(DataGrid myGrid){
DataGridCell myCell = new DataGridCell();
// Use and arbitrary cell.
myCell.RowNumber = 1;
myCell.ColumnNumber = 1;
Console.WriteLine(myGrid[myCell]);
}
干杯 --Jocke