C# Label(Transparent backGround) on PictureBox (on Panel) -


i want draw labels on pictureboxes should transparent background . code : `

                           labels[i].location = new point(0, 0);                             labels[i].size = new size(13, 13);                             labels[i].backcolor = color.transparent;                             labels[i].forecolor = color.blue;     invoke(new methodinvoker(delegate { panels.controls.add(pictures[i]); }));                                     invoke(new methodinvoker(delegate { panels.controls.add(labels[i]); })); 

i'am drawing pictures fine, labels ... labels under pictures (i can see each label when drag picture out of place) want know , how can put them in front transparent background . thank `

i think should use z-index


Comments

Popular posts from this blog

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

c++ - CryptStringToBinary API behavior -