当前位置: 代码迷 >> Delphi >> dataGridView checkboxColumn有关问题
  详细解决方案

dataGridView checkboxColumn有关问题

热度:6948   发布时间:2013-02-25 00:00:00.0
dataGridView checkboxColumn问题
            // 
            // Column1
            // 
            this.Column1.HeaderText = "选中销账";
            this.Column1.Name = "Column1";
            this.Column1.ReadOnly = true;
            // 
            // Column2
            // 
            this.Column2.DataPropertyName = "DebatNum";
            this.Column2.HeaderText = "账单编号";
            this.Column2.Name = "Column2";
            this.Column2.ReadOnly = true;
    这个是窗体加载时的代码,第一列为checkbox列,就加载这一项时出问题,是不是还有啥属性没设置啊?
请各位高手赐教,先谢过了
------解决方案--------------------------------------------------------
没人来啊??呵呵  这个问题我自己解决了,其实很简单,我添加了datagridview_cellcontentclick函数,这个函数操作包括headtext行,所以在该函数里面加入一句if(e.currentIndex>0)的行数索引限制就好了。
希望能帮助遇到和我一样问题的朋友。
  相关解决方案