Weird Label behaviour in C# -
i add label form this
l = new label(); l.location = new point(520, 94); l.size = new size(95, 20); l.text = "pooling interval (s):"; f.controls.add(l); if text of label "pooling interval (s):" displayed text on form "pooling interval" if change text "pooling interval(s):" removing second space text gets printed correctly.
any reason happening? there no overlap of other controls.
just leave row size that:
l = new label(); l.location = new point(520, 94); //l.size = new size(95, 20); l.text = "pooling interval (s):"; f.controls.add(l);
Comments
Post a Comment