WPF 遍历 DataGrid 每行的控件

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

     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;
                }
            }

 

posted @ 2010-09-02 18:51  任国强  阅读(5433)  评论(3编辑  收藏  举报