码迷,mamicode.com
首页 > Windows程序 > 详细

DataGridView 添加鼠标右键选择行

时间:2017-07-12 15:29:49      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:cell   item   ons   div   selection   log   mouse   select   color   

1、设置选择模式

this.DataGridView_1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;

2、添加CellMouseDown事件

if (e.Button == MouseButtons.Right)
{
        if (e.RowIndex >= 0)
        {
                DataGridView_1.ClearSelection();
                DataGridView_1.Rows[e.RowIndex].Selected = true;
                DataGridView_1.CurrentCell = dgItems.Rows[e.RowIndex].Cells[e.ColumnIndex];
        }
}

DataGridView 添加鼠标右键选择行

标签:cell   item   ons   div   selection   log   mouse   select   color   

原文地址:http://www.cnblogs.com/xakml/p/7154981.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!