I have a Form which contains controls whose properties', such as their positions, are defined in a resx file, like so:
Form1.rex:
<data name="textBox1.Location" type="System.Drawing.Point, System.Drawing">
<value>15, 61</value>
And those properties are then retrieved using the following method call:
resources.ApplyResources(this.textBox1, "textBox");
What I want though, is to get rid of this method call as well a the resx file, and directly set the control properties in the designer.cs file, like so:
Form1.Designer.cs:
textBox1.Location = new System.Drawing.Point(15,61);
Of course I could do this manually, but I have a lot of Forms and it would take me a while so I was wondering if there was some way to do this?