博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
wpf datagrid 遍历行
阅读量:5830 次
发布时间:2019-06-18

本文共 921 字,大约阅读时间需要 3 分钟。

如果 DataGrid 中的行还未被加载,即 LoadingRow 事件未发生,那么针对此行的 GetCellContent() 是不可能得到东西的,只能为 null。

 下面两种语法,只是变相的形式而已。

    for (int i = 0; i < dgETL.Items.Count; i++)

            {
                CheckBox selectCheckBoxInCell = dgETL.Columns[0].GetCellContent(dgETL.Items[i]) as CheckBox;
                if (selectCheckBoxInCell != null)
                {
                    selectCheckBoxInCell.IsChecked = cbxOne.IsChecked;
                }
            }

            foreach (var item in dgETL.Items)

            {
                CheckBox selectCheckBoxInCell = dgETL.Columns[0].GetCellContent(item) as CheckBox;
                if (selectCheckBoxInCell != null)
                {
                    selectCheckBoxInCell.IsChecked = cbxOne.IsChecked;
                }
            }

 GridViewRow s = ((GridViewRow)PSFileDataGrid.ItemContainerGenerator.ContainerFromIndex(1));

            if (s != null)
            {
                Button sb = null;
                GridViewCellBase j =
                      (from c in s.Cells where c.Column.Name == "uid" select c).FirstOrDefault();
                if (j != null)
                {
                    sb = j.Template.FindName("button1", j) as Button;
                    sb.IsEnabled = false;
                }

            }

 

转载于:https://www.cnblogs.com/zany-hui/articles/2392685.html

你可能感兴趣的文章
如何基于Redis Replication设计并实现Redis-replicator?
查看>>
浮点数内存如何存储的
查看>>
贪吃蛇
查看>>
EventSystem
查看>>
用WINSOCK API实现同步非阻塞方式的网络通讯
查看>>
玩一玩博客,嘿嘿
查看>>
P1352 没有上司的舞会
查看>>
ios11文件夹
查看>>
【HLOJ 559】好朋友的题
查看>>
Electric Fence(皮克定理)
查看>>
nvl 在mysql中如何处理
查看>>
MyEclipse 快捷键
查看>>
快速傅里叶变换FFT
查看>>
大数据常用基本算法
查看>>
JavaScript学习笔记(十三)——生成器(generator)
查看>>
hibernate保存失败
查看>>
MySQL增量订阅&消费组件Canal POC
查看>>
Sqlite多线程
查看>>
数据结构-时间复杂度
查看>>
对象与字符串相互转换
查看>>