I'm trying to dynamically set Label B location depending on another Label A location and width then data binding is done:
This is how I do it:
this.LabelB.Location = new Point(LabelA.Location.X + LabelA.Width + 10, this.LabelB.Location.Y);
The problem is, that both of labels has bigger font applied to them - Tahoma 15px and when I set location like that, it probably ignores the font and it's size, because Label B is still behind Label A.