0

我正在使用 DevExpress 的 GridControl 以在不同类型的视图中显示数据。以前当我使用 DataGridView 时,我可以通过

DataGridViewObject.Rows[RowIndex].Cells[ColumnIndex/ColumnName].Value

现在我想用 GridView 对象访问 GridControl 中的相同单元格值,但不想在行的 for 循环中访问这样的行,也不想在我获得 RowIndex 和 ColumnIndex 的单元格单击事件中访问,因为我需要维护这两个我的应用程序的全局区域,以便我可以使用此语法直接获取特定的单元格值。

4

2 回答 2

3

您可以使用 GridView 的GetRowCellValue 方法,该方法将采用行索引和字段名称或 GridColumn 实例来返回值。

例如:

var cellValue = myGridView.GetRowCellValue(5, "EmployeeName");

也可以看看:

在代码中读取和修改单元格值

于 2020-04-14T13:59:11.343 回答
0

您应该使用以下内容:

private void BindData()
        {
            bs = new BindingSource();
            bs.DataSource = _Supplier.Select();
            gcSupplier.DataSource = bs;
            txtCode.DataBindings.Add("Text", bs, colCode.FieldName);
            txtName.DataBindings.Add("Text", bs, colName.FieldName);
            txtAddress.DataBindings.Add("Text", bs, colAddress.FieldName);
            txtNationalCode.DataBindings.Add("Text", bs, colNationalCode.FieldName);
            txtEconomicCode.DataBindings.Add("Text", bs, colEconomicCode.FieldName);
            txtPostalCode.DataBindings.Add("Text", bs, colPostalCode.FieldName);
            txtTelNumber.DataBindings.Add("Text", bs, colTelNumber.FieldName);
            txtFaxNumber.DataBindings.Add("Text", bs, colFaxNumber.FieldName);
            txtMobileNumber.DataBindings.Add("Text", bs, colMobileNumber.FieldName);
            txtEmail.DataBindings.Add("Text", bs, colEmail.FieldName);
            luePersonType.DataBindings.Add("EditValue", bs, colPersonType_Id.FieldName);
            lueState.DataBindings.Add("EditValue", bs, colState_Id.FieldName);
            lueCity.DataBindings.Add("EditValue", bs, colCity_Id.FieldName);
        }
于 2021-09-22T04:17:20.630 回答