• using System.Windows.Controls;
  • using System.Windows.Controls.Primitives;
  • using System.Windows.Media;
  • namespace Splash.WPF
  • {
  • public static class DataGridPlus
  • {
  • /// <summary>
  • /// 获取DataGrid控件单元格
  • /// </summary>
  • /// <param name="dataGrid">DataGrid控件</param>
  • /// <param name="rowIndex">单元格所在的行号</param>
  • /// <param name="columnIndex">单元格所在的列号</param>
  • /// <returns>指定的单元格</returns>
  • public static DataGridCell GetCell(this DataGrid dataGrid, int rowIndex, int columnIndex)
  • {
  • DataGridRow rowContainer = dataGrid.GetRow(rowIndex);
  • if (rowContainer != null)
  • {
  • DataGridCellsPresenter presenter = GetVisualChild<DataGridCellsPresenter>(rowContainer);
  • DataGridCell cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(columnIndex);
  • if (cell == null)
  • {
  • dataGrid.ScrollIntoView(rowContainer, dataGrid.Columns[columnIndex]);
  • cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(columnIndex);
  • }
  • return cell;
  • }
  • return null;
  • }
  • /// <summary>
  • /// 获取DataGrid的行
  • /// </summary>
  • /// <param name="dataGrid">DataGrid控件</param>
  • /// <param name="rowIndex">DataGrid行号</param>
  • /// <returns>指定的行号</returns>
  • public static DataGridRow GetRow(this DataGrid dataGrid, int rowIndex)
  • {
  • DataGridRow rowContainer = (DataGridRow)dataGrid.ItemContainerGenerator.ContainerFromIndex(rowIndex);
  • if (rowContainer == null)
  • {
  • dataGrid.UpdateLayout();
  • dataGrid.ScrollIntoView(dataGrid.Items[rowIndex]);
  • rowContainer = (DataGridRow)dataGrid.ItemContainerGenerator.ContainerFromIndex(rowIndex);
  • }
  • return rowContainer;
  • }
  • /// <summary>
  • /// 获取父可视对象中第一个指定类型的子可视对象
  • /// </summary>
  • /// <typeparam name="T">可视对象类型</typeparam>
  • /// <param name="parent">父可视对象</param>
  • /// <returns>第一个指定类型的子可视对象</returns>
  • public static T GetVisualChild<T>(Visual parent) where T : Visual
  • {
  • T child = default(T);
  • int numVisuals = VisualTreeHelper.GetChildrenCount(parent);
  • for (int i = 0; i < numVisuals; i++)
  • {
  • Visual v = (Visual)VisualTreeHelper.GetChild(parent, i);
  • child = v as T;
  • if (child == null)
  • {
  • child = GetVisualChild<T>(v);
  • }
  • if (child != null)
  • {
  • break;
  • }
  • }
  • return child;
  • }
  • }
  • }

遍历WPF DataGrid单元格的更多相关文章

  1. 关于C# wpf DataGrid单元格双击设置单元格内容

    1.我是使用了 visual stadio 2015, 用的C# WPF写个工具,但是发现wpf原生没有涉及表格的东西(类似 winform·的DataGridView),所以使用的是toolkit工 ...

  2. WPF学习笔记(8):DataGrid单元格数字为空时避免验证问题的解决

    原文:WPF学习笔记(8):DataGrid单元格数字为空时避免验证问题的解决 如下图,在凭证编辑窗体中,有的单元格不需要数字,但如果录入数字后再删除,会触发数字验证,单元格显示红色框线,导致不能执行 ...

  3. 基于1.3.3版本tooltip的datagrid单元格tip实现

    基于1.3.3版本tooltip的datagrid单元格tip实现 2013年05月25日 ⁄ datagrid ⁄ 共 6122字 ⁄ 评论数 26 ⁄ 被围观 7,033 views+ 文章目录 ...

  4. datagrid单元格格式化样式化

    本文体验datagrid单元格的格式化和样式化.   datagrid显示的DOM结构 <td field="code"> <div style="te ...

  5. WPF学习笔记(1):DataGrid单元格实现逐键过滤功能

    最近,开始学习WPF,其UI设计完全颠覆了传统的设计理念,为程序员提供了极大的自由发挥空间,让我为之惊叹,且为之着迷.然而,WPF在国内的热度却并不高,大部分贴子都是2012年以前的,出版的图书也很少 ...

  6. WPF中修改DataGrid单元格值并保存

    编辑DataGrid中的单元格的内容然后保存是非常常用的功能.主要涉及到的方法就是DataGrid的CellEditEnding  和BeginningEdit .其中BeginningEdit 是当 ...

  7. EasyUI datagrid单元格文本超出显示省略号,鼠标移动到单元格显示文本

    nowrap : true;  是前提 $('#×××').datagrid({ nowrap : true,//设置为true,当数据长度超出列宽时将会自动截取 }); 省略号样式: <sty ...

  8. easyui datagrid 单元格编辑(cell editing)

    demo中有row editing 项目中发现个cell editing,但是有bug,修改好了 主要实现功能:单击数据表格单元格,编辑单元格数据 js代码如下: $.extend($.fn.data ...

  9. EasyUI Datagrid 单元格编辑

    3:对于单元格的编辑 $('#Units').datagrid({ pageNumber: 1, //url: "@ViewBag.Domain/Paper/GetQuestionUnit& ...

随机推荐

  1. 洛谷——P2921 [USACO08DEC]在农场万圣节Trick or Treat on the Farm

    P2921 [USACO08DEC]在农场万圣节Trick or Treat on the Farm 题意翻译 题目描述 每年,在威斯康星州,奶牛们都会穿上衣服,收集农夫约翰在N(1<=N< ...

  2. Django-搭建win7虚拟环境-virtualenv

    为什么要配置Django虚拟环境? 例如:在开发Python Django的时候,系统安装的Python3只有一个版本:3.6.所有第三方的包都会被pip安装到Python3的site-package ...

  3. PAT 1110 Complete Binary Tree

    Given a tree, you are supposed to tell if it is a complete binary tree. Input Specification: Each in ...

  4. PAT 1091. Acute Stroke (bfs)

    One important factor to identify acute stroke (急性脑卒中) is the volume of the stroke core. Given the re ...

  5. 8.3 操作MongoDB数据库

    一项权威调查显示,在大数据时代软件开发人员必备的十项技能中MongoDB数据库名列第二,仅次于HTML5.MongoDB是一个基于分布式文件存储的文档数据库,可以说是非关系型(Not Only SQL ...

  6. nginx的安装部署以及使用

    [介绍] nginx是现在互联上非常流行的高性能的 Web 和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器. 现在很多互联网应用都使用nginx来作为负载均衡的使用,再高并发 ...

  7. 【codeforces 509E】Pretty Song

    [题目链接]:http://codeforces.com/contest/509/problem/E [题意] 让你计算一个字符串的所有子串里面元音字母出现的频率的和; [题解] 先处理出前缀和-&g ...

  8. (38)Spring Boot分布式Session状态保存Redis【从零开始学Spring Boot】

    [本文章是否对你有用以及是否有好的建议,请留言] 在使用spring boot做负载均衡的时候,多个app之间的session要保持一致,这样负载到不同的app时候,在一个app登录之后,而访问到另外 ...

  9. Performance Metrics(性能指标2)

    这一章我们将讨论性能指标的优化(如CPU利用率和执行时间的优化是如此的重要),下面是一章本书性能优化的章节示意图: 不同的指标都适合于不同的性能测量领域,如数据库访问时间的性能测量可能不适合评价一个客 ...

  10. percona-toolkit使用教程

    1:慢日志查询 [root@test_dx modify]# wget percona.com/get/pt-query-digest [root@test_dx modify]# file pt-q ...