随笔分类 -  WPF

摘要: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 阅读(2392) 评论(0) 推荐(0)
摘要:实现简单的WPF 倒计时.. 阅读全文
posted @ 2012-12-27 11:02 chasecnblogs 阅读(7163) 评论(2) 推荐(2)