1. 转载:http://blog.csdn.net/jhqin/article/details/7645357
  2. /* ----------------------------------------------------------
  3. 文件名称:DataGridPlus.cs
  4. 作者:秦建辉
  5. MSN:splashcn@msn.com
  6. QQ:36748897
  7. 博客:http://blog.csdn.net/jhqin
  8. 开发环境:
  9. Visual Studio V2010
  10. .NET Framework 4 Client Profile
  11. 版本历史:
  12. V1.0    2012年06月07日
  13. WPF DataGrid控件扩展方法
  14. 参考资料:
  15. http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/b7299e55-92e2-4a6b-8987-869fef8f22eb/
  16. ------------------------------------------------------------ */
  17. using System.Windows.Controls;
  18. using System.Windows.Controls.Primitives;
  19. using System.Windows.Media;
  20. namespace Splash.WPF
  21. {
  22. public static class DataGridPlus
  23. {
  24. /// <summary>
  25. /// 获取DataGrid控件单元格
  26. /// </summary>
  27. /// <param name="dataGrid">DataGrid控件</param>
  28. /// <param name="rowIndex">单元格所在的行号</param>
  29. /// <param name="columnIndex">单元格所在的列号</param>
  30. /// <returns>指定的单元格</returns>
  31. public static DataGridCell GetCell(this DataGrid dataGrid, int rowIndex, int columnIndex)
  32. {
  33. DataGridRow rowContainer = dataGrid.GetRow(rowIndex);
  34. if (rowContainer != null)
  35. {
  36. DataGridCellsPresenter presenter = GetVisualChild<DataGridCellsPresenter>(rowContainer);
  37. DataGridCell cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(columnIndex);
  38. if (cell == null)
  39. {
  40. dataGrid.ScrollIntoView(rowContainer, dataGrid.Columns[columnIndex]);
  41. cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(columnIndex);
  42. }
  43. return cell;
  44. }
  45. return null;
  46. }
  47. /// <summary>
  48. /// 获取DataGrid的行
  49. /// </summary>
  50. /// <param name="dataGrid">DataGrid控件</param>
  51. /// <param name="rowIndex">DataGrid行号</param>
  52. /// <returns>指定的行号</returns>
  53. public static DataGridRow GetRow(this DataGrid dataGrid, int rowIndex)
  54. {
  55. DataGridRow rowContainer = (DataGridRow)dataGrid.ItemContainerGenerator.ContainerFromIndex(rowIndex);
  56. if (rowContainer == null)
  57. {
  58. dataGrid.UpdateLayout();
  59. dataGrid.ScrollIntoView(dataGrid.Items[rowIndex]);
  60. rowContainer = (DataGridRow)dataGrid.ItemContainerGenerator.ContainerFromIndex(rowIndex);
  61. }
  62. return rowContainer;
  63. }
  64. /// <summary>
  65. /// 获取父可视对象中第一个指定类型的子可视对象
  66. /// </summary>
  67. /// <typeparam name="T">可视对象类型</typeparam>
  68. /// <param name="parent">父可视对象</param>
  69. /// <returns>第一个指定类型的子可视对象</returns>
  70. public static T GetVisualChild<T>(Visual parent) where T : Visual
  71. {
  72. T child = default(T);
  73. int numVisuals = VisualTreeHelper.GetChildrenCount(parent);
  74. for (int i = 0; i < numVisuals; i++)
  75. {
  76. Visual v = (Visual)VisualTreeHelper.GetChild(parent, i);
  77. child = v as T;
  78. if (child == null)
  79. {
  80. child = GetVisualChild<T>(v);
  81. }
  82. if (child != null)
  83. {
  84. break;
  85. }
  86. }
  87. return child;
  88. }
  89. }
  90. }

WPF:获取DataGrid控件单元格DataGridCell的更多相关文章

  1. WPF 获取DataGrid 控件选中的单元格信息

    获取 DataGrid 选中的单元格的信息DataGridCellInfo cell_Info = this.studentTable.SelectedCells[0]; studentTableIt ...

  2. wpf 获取DataGrid某一个单元格,设置此单元格ToolTip内容和背景颜色

    public void GetCell()        {            for (int i = 0; i < this.datagrid1.Items.Count; i++)    ...

  3. WPF的DataGrid控件从excel里复制数据然后粘贴

    WPF的DataGrid控件不能像winform的DataGridView控件一样,支持值的粘贴.WPF的DataGrid控件本质上是跟数据绑定联系在一起,所以需要进行复制粘贴的操作,可以在wpf里用 ...

  4. WPF 4 DataGrid 控件(自定义样式篇)

    原文:WPF 4 DataGrid 控件(自定义样式篇)      在<WPF 4 DataGrid 控件(基本功能篇)>中我们已经学习了DataGrid 的基本功能及使用方法.本篇将继续 ...

  5. WPF 4 DataGrid 控件(进阶篇一)

    原文:WPF 4 DataGrid 控件(进阶篇一)      上一篇<WPF 4 DataGrid 控件(自定义样式篇)>中,我们掌握了DataGrid 列表头.行表头.行.单元格相关的 ...

  6. WPF 4 DataGrid 控件(基本功能篇)

    原文:WPF 4 DataGrid 控件(基本功能篇)      提到DataGrid 不管是网页还是应用程序开发都会频繁使用.通过它我们可以灵活的在行与列间显示各种数据.本篇将详细介绍WPF 4 中 ...

  7. WPF 4 DataGrid 控件(进阶篇二)

    原文:WPF 4 DataGrid 控件(进阶篇二)      上一篇<WPF 4 DataGrid 控件(进阶篇一)>中我们通过DataGridTemplateColumn 类自定义编辑 ...

  8. WPF获取某控件的位置,也就是偏移量

    原文:WPF获取某控件的位置,也就是偏移量 此段示例在MSDN中可见.XAML代码如下: <Window xmlns="http://schemas.microsoft.com/win ...

  9. WPF 自定义DataGrid控件样式

    内容转自https://www.cnblogs.com/xiaogangqq123/archive/2012/05/07/2487166.html 一.DataGrid基本样式(一) 小刚已经把Dat ...

随机推荐

  1. webpack2学习日志

    webpack说容易也容易,说难也难,主要还是看个人,想学到什么样的程度,很多公司可能要求仅仅是会用就行,但是也有一些公司要求比较高,要懂一些底层的原理,所以还是要花一些时间的,看个人需求.这篇仅仅是 ...

  2. 201521123026 《Java程序设计》第三周学习总结

    1. 本章学习总结 初学面向对象,会学习到很多碎片化的概念与知识.尝试学会使用思维导图将这些碎片化的概念.知识组织起来.请使用纸笔或者下面的工具画出本周学习到的知识点.截图或者拍照上传. 2. 书面作 ...

  3. 201521123056 《Java程序设计》第10周学习总结

    1. 本周学习总结 1.1 以你喜欢的方式(思维导图或其他)归纳总结异常与多线程相关内容. 2. 书面作业 本次PTA作业题集异常.多线程 1. finally 题目4-2 1.1 截图你的提交结果( ...

  4. 201521123039 《java程序设计》第一周学习总结

    #1.本章学习总结 Java是面向对象的程序语言,它一切定义都是对象.我们所编写的Java程序经过编译后生成了*.class的文件,再经过JVM对*.class解释运行就可以得到Java程序,所以Ja ...

  5. python 中的%s是什么意思呢?

    今天忽然想写Python中的%s的意思,它怎么理解呢,我查阅了一下相关文献,然后结合了自己的理解,分析如下: 这是一个字符串格式化语法(这是从c 中调用的) 具体请参阅     http://www. ...

  6. centOS7网络配置(nmcli,bonding,网络组)

    关于网络接口命名 CentOS 6之前,网络接口使用连续号码命名: eth0. eth1等,当增加或删除网卡时,名称可能会发生变化.CentOS 7使用基于硬件,设备拓扑和设置类型命名. 网卡命名机制 ...

  7. java进程/线程;堆和栈;多线程

    一.进程和线程 进程:在内存中运行的应用程序,一个exe是一个进程. 如:ps -exf  可以查看各个应用的进程,其中ppid为父进程: ps aux | egrep '(cron|syslog)' ...

  8. apache-beanutil工具类的使用

    BeanUtil工具类是apache commons中的项目 使用BeanUtil除了需要 commons-beanutils-1.8.3.jar 外,可能需要记录错误日志信息,再加入 commons ...

  9. RobotFramework自动化测试框架-移动手机自动化测试Clear Text关键字的使用

    Clear Text关键字用来清除输入框的数据,该关键字接收一个参数[ locator ],这里的locator指的就是界面元素的定位方式. 示例1:Clear Text清除输入框数据时,采用reso ...

  10. sql server 把数据 复制成脚本文件

    问题描述:想把一个数据库里的表和字段复制到另一个数据库里: 方法一:a.生成脚本文件 选择数据库右键->任务->生成脚本: b. 选择特定的数据库对象->下一步: c.高级-> ...