摘要: public static void SetDataGridCellIsEnabled(DataGrid datagrid, int rowIndex, int[] cellIndexArray, bool IsEnabled) { for (int index = 0; index < cellIndexArray.Length; index++) { DataGridCell currentCell = GetDataGridCell(datagrid, rowIndex, cellIndexArray[index]); if (currentCell != null) { ... 阅读全文
posted @ 2013-01-17 18:31 chasecnblogs 阅读(2309) 评论(0) 推荐(0) 编辑