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

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -