devexpress 多个checkedit 怎么设置智能选...
发布网友
发布时间:2023-11-24 18:31
我来回答
共2个回答
热心网友
时间:2024-06-20 22:54
网页链接
百度经验上有
1 先将CheckEdit控件的属性Properties——CheckStyle属性设置为Radio。
2 将所有CheckEdit控件的属性Properties——RadioGroupIndex设为一样的值,即可实现单选按钮效果。
热心网友
时间:2024-06-20 22:54
加上这个事件
private void gvInventory_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
GridHitInfo hitInfo = gvInventory.CalcHitInfo(e.Location);
if (hitInfo.InRowCell)
{
if (hitInfo.Column.RealColumnEdit is RepositoryItemCheckEdit)
{
gvInventory.FocusedColumn = hitInfo.Column;
gvInventory.FocusedRowHandle = hitInfo.RowHandle;
gvInventory.ShowEditor();
CheckEdit edit = gvInventory.ActiveEditor as CheckEdit;
if (edit == null) return;
edit.Toggle();
DXMouseEventArgs.GetMouseArgs(e).Handled = true;
}
}
}