这是我的构造函数,
new VisConfig(
string.Empty,
string.Empty,
new List<SensorConfig>()
{
new SensorConfig(
string.Empty, //DGV COl0
string.Empty, //DGV COl1
new List<CoveredTrafficLane>()
{
new CoveredLane(string.Empty) //DGV COl 2,3,4,5
},
new RseDevicePosition(
new ValueWithUnit<int>(0, "mm"), //DGV COl6
new ValueWithUnit<int>(0, "mm"), //DGV COl7
new ValueWithUnit<int>(0, "mm"), //DGV COl8
new ValueWithUnit<int>(0, "tenthOfDegree"), //DGV COl9
new ValueWithUnit<int>(0, "tenthOfDegree"), //DGV COl10
new ValueWithUnit<int>(0, "tenthOfDegree")), //DGV COl11
0, //DGV COl12
0) //DGV COl13
},
我正在尝试将数据从 DGV(winform) 获取到此构造函数。
请帮助我,我怎样才能获得数据网格值并将其填充到构造函数中。