如何判断DataGridViewCheckBoxCell被选中

 我来答
五雅珺0hD
2017-08-01 · TA获得超过1660个赞
知道小有建树答主
回答量:1.5万
采纳率:5%
帮助的人:1376万
展开全部
假设DataGridView为dgv

1、判断DataGridViewCheckBoxCell是否被选中

DataGridViewCheckBoxCell chkcell = dgv[1,0] as DataGridViewCheckBoxCell;

bool IsChecked = Convert.ToBoolean(chkcell.EditingCellFormattedValue);

//注意此处获取DataGridViewCheckBoxCell是否选中的值,在DataGridView的CellContentClick事件(或者其他DataGridView事件)中应该取chkcell.EditingCellFormattedValue,而在非DataGridView事件比如说按钮Button的Click事件中,直接取chkcell.Value就可以了

if(IsChecked)

{

//当前CheckBoxCell被选中

}

2、往DataGridViewComboBoxCell中添加不同的数据源

//开始编辑单元格时填充枚举项(人员属性的枚举)
private void dgvPersonProperty_CellBeginEdit(object sender, DataGridViewCellCancelEventArgs e)
{
try
{
Wag_PersonPropertyExt.Wag_PersonPropertyExtRow pper =
dgvPersonProperty.Rows[e.RowIndex].Tag as
Wag_PersonPropertyExt.Wag_PersonPropertyExtRow;

Wag_PersonPropertyCode
dsPersonPropertyCode =
WageItemDistibutionMethod.GetPersonPropertyCodeByPropertyId(pper.PropertyId.ToString());

DataGridViewComboBoxCell cmb = dgvPersonProperty[e.ColumnIndex, e.RowIndex] as DataGridViewComboBoxCell;
cmb.DataSource = dsPersonPropertyCode._Wag_PersonPropertyCode;
cmb.DisplayMember = "CodeName";
cmb.ValueMember = "PropertyCodeId";
}
catch (System.Exception ex)
{
MsgHelper.WarnMSG(ex.Message);
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式