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鼠标左键滑动选中的主要内容,如果未能解决你的问题,请参考以下文章

DevComponents.DotNetBar怎么在C#中使用

DotNetBar三方控件问题

如何将 UI 测试与 DotNetBar 组件一起使用?

dotnetbar控件有疑问

请教几个关于dotnetbar控件方面的问题。

dotnetbar 中的 dotnetbarmanager 控件的使用问题