VGridControl name : vgcQueryPrice 
VGridControl 从数据库中读出的数据绑定都和显示都没有问题
而且对应单元格中也是有值的, 但就是取不出来..//注 :VGridControl部分行我修改为限制在UI上编辑的,不知道和这个有没有原因
MessageBox.show(vgcQueryPrice.Rows["BuildArea"])//非空
MessageBox.show(vgcQueryPrice.Rows["BuildArea"].Properties) //非空
MessageBox.show(vgcQueryPrice.Rows["BuildArea"].Properties.Value) //未定义 NULL Value为NULL//换个方法
object obj = vgcQueryPrice.GetCellValue(vgcQueryPrice.Rows["address"], vgcQueryPrice.Rows["address"].Index);
//obj对象为空stringobj = vgcQueryPrice.GetCellDisplayText(vgcQueryPrice.Rows["address"], vgcQueryPrice.Rows["address"].Index);//obj对象为string.Empty || ""请教高手, 这个问题困扰我很久了, 我 已经百度过了 , 而且也看了控件的例子,
并且在控件中尝试取值是成功的, 但是到了自己的代码中就不知道为什么 取不出来!是否有什么属性是影响不能取值的?