如何使用shift键按下在gridview中选择多个单元格

如何使用shift键按下在gridview中选择多个单元格

本文介绍了如何使用shift键按下在gridview中选择多个单元格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在gridview中使用shift键选择多个单元格按

i want select multiple cells in gridview using shift key press

推荐答案

private void dataGridView1_RowHeaderMouseClick(object sender, DataGridViewCellMouseEventArgs e)
{
    foreach (DataGridViewRow gr in old)
    {
        if (gr == dataGridView1.CurrentRow)
        {
            gr.Selected = false;
        }
        else
        {
            gr.Selected = true;
        }
    }
}


这篇关于如何使用shift键按下在gridview中选择多个单元格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 12:14