Even if "Localizable" property of the form is false, control's property is added to resource file. I want to added it to the designer.cs file instead of resource file.
对此有什么解决方案?
已经尝试
this.myControl.LocationF = ((System.Drawing.PointF)(resources.GetObject("myControl.LocationF"))
我想要这个
this.myControl.LocationF = new System.Drawing.PointF(50.0f, 50.0f);