我有一个Devexpress gridcontrol,里面有一个复选框列。我试图在用户检查或取消选中任何一行中的一个复选框后获取复选框值的值。我的问题是我总是得到假的价值。
如何获得正确的值?我应该使用什么事件?
这是我的代码,
private void gvBobin_CellValueChanged(object sender, DevExpress.XtraGrid.Views.Base.CellValueChangedEventArgs e)
{
setUsageSlipAndProductionEntryRelation();
}
public void setUsageSlipAndProductionEntryRelation() {
for (int i = 0; i < gvBobin.RowCount -1; i++)
{
bool check_ = (bool)gvBobin.GetRowCellValue(i, "CHECK");
if (check_ == true)
{
...............
}
else{
...............
}
}
}
答案 0 :(得分:0)
如果您想立即对用户操作做出反应,那么您需要使用GridView.CellValueChanging
事件。仅在用户离开单元格后才会触发GridView.CellValueChanged
事件。在这两种情况下,要获取更改后的值,您必须使用CellValueChangedEventArgs
对象e
及其Value
属性,在获取值之前,您必须检查列。
private void gvBobin_CellValueChanged(object sender, DevExpress.XtraGrid.Views.Base.CellValueChangedEventArgs e)
{
if (e.Column.FieldName == "CHECK")
{
bool check_ = (bool)e.Value;
if (check_)//There are no need to write check_ == True
//You can use e.RowHandle with gvBobin.GetRowCellValue method to get other row values.
//Example: object value = gvBobin.GetRowCellValue(e.RowHandle,"YourColumnName")
{
//...............
}
else
{
//...............
}
}
}
如果您要遍历所有行,请不要使用GridView.RowCount
。请改用GridView.DataRowCount
属性。
for (int i = 0; i < gvBobin.DataRowCount -1; i++)
//...............