DotNetBar使用技巧之SuperGridControl鼠标左键滑动选中
Posted ladyzhu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DotNetBar使用技巧之SuperGridControl鼠标左键滑动选中相关的知识,希望对你有一定的参考价值。
SuperGridControl与DataGirdViewEx不同,在SuperGridControl的CellMouseEnter事件中没有捕获鼠标的属性,需要自行判断鼠标属性
private void GridDrug_CellMouseEnter(object sender, GridCellEventArgs e) { if (e.GridCell.ColumnIndex == colSelect.ColumnIndex && Control.MouseButtons == MouseButtons.Left)//colSelect为选择框所在列 { e.GridCell.GridRow.Checked = !e.GridCell.GridRow.Checked; } }
以上是关于DotNetBar使用技巧之SuperGridControl鼠标左键滑动选中的主要内容,如果未能解决你的问题,请参考以下文章