我应该使用哪个事件来获取gridcontrol中的复选框值
本文关键字:gridcontrol 复选框 获取 事件 我应该 | 更新日期: 2023-09-27 18:10:55
我有一个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{
...............
}
}
}
如果您想立即对用户操作做出反应,那么您需要使用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++)
//...............