我想将DataGridView控件用作列的列表.在详细信息模式下类似ListView,但我想保持DataGridView的灵活性.
ListView(启用详细信息视图和FullRowSelect)突出显示整行并显示整行的焦点标记:
DataGridView(使用SelectionMode = FullRowSelect)仅在单个单元格周围显示焦点标记:
那么,有没有人知道一些(理想情况下)使DataGridView行选择看起来像ListView的简单方法?
我不是在寻找控件的改变行为 - 我只希望它看起来一样.
理想情况下,不要搞砸实际绘画的方法.
将此代码放入表单的构造函数中,或使用IDE 将其设置在datagridview的Properties中.
dgv.SelectionMode = DataGridViewSelectionMode.FullRowSelect; dgv.MultiSelect = false; dgv.RowPrePaint +=new DataGridViewRowPrePaintEventHandler(dgv_RowPrePaint);
然后将以下事件粘贴到表单代码中:
private void dgv_RowPrePaint(object sender, DataGridViewRowPrePaintEventArgs e) { e.PaintParts &= ~DataGridViewPaintParts.Focus; }
它的工作原理!:-)
"dgv"是有问题的DataGridView,"form"是包含它的Form.
请注意,此洗脱液不会在整行周围显示虚线矩形.相反,它完全消除了焦点.
怎么样
SelectionMode == FullRowSelect
和
ReadOnly == true
这个对我有用.