DataSource绑定不支持A.B的形式,DataBindings可以,而很多控件没有DataBindings属性。
this.dgvColorSchedule.DataSource = SettingData.Instance.AvCardConfig.ColorSchedule;
this.colScheme.DataPropertyName = "Scheme.Name";
this.colTimeSegment.DataPropertyName = "TimeSegment";
不能处理Scheme.Name,自动截断为Scheme,可以Override Name属性所在类的ToString().
然后this.colScheme.DataPropertyName = "Scheme"; 这种方式不能处理更多属性。