请问各位老师,这种效果是怎么做出来的啊?

解决方案 »

  1.   

    这种实现方式 很多种啊, 可以自定义一种列,显示的文本加上删除线; 也可以 在 Paint 事件中画上去。等
      

  2.   


                DataGridViewCellStyle style= new DataGridViewCellStyle();
                Font f = new Font("宋体",13,FontStyle.Strikeout);
                style.Font = f;
                dataGridView1.Rows[e.RowIndex].DefaultCellStyle = style;