项目
------- F_Data.cs
--------F_Data.Desinger.CS
//
// quickView8
//
this.quickView8.DataBindings.Add(new System.Windows.Forms.Binding("battery_voltage", this.bindingSource1, "batterylevel", true));
this.quickView8.desc = "电压 ";
resources.ApplyResources(this.quickView8, "quickView8");
this.quickView8.MinimumSize = new System.Drawing.Size(100, 25);
this.quickView8.Name = "quickView8";
this.quickView8.number = 0D;
this.quickView8.numberColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(151)))), ((int)(((byte)(248)))));
//
// quickView6
//
this.quickView6.DataBindings.Add(new System.Windows.Forms.Binding("number", this.bindingSource1, "DistToHome", true));
this.quickView6.desc = "距离";
resources.ApplyResources(this.quickView6, "quickView6");
this.quickView6.MinimumSize = new System.Drawing.Size(100, 25);
this.quickView6.Name = "quickView6";
this.quickView6.number = 0D;
this.quickView6.numberColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(255)))), ((int)(((byte)(252)))));
this.quickView6.Load += new System.EventHandler(this.quickView6_Load);
this.quickView6.DoubleClick += new System.EventHandler(this.quickView_DoubleClick);
上边代码 局部看 没有任何 bug 可是问题出现在quickView8 和6 不引用不同 绑定的数据源不同 .quickView6能正常显示 可是 8就提示 无法绑定到目标控件的属性“battery_voltage” 大家觉得这个该怎么破呢 我尝试在引用前去声明下 可是battery_voltage 的数据在另外同一个项目的类里,难道无法引用么
|