c# - how to create dynamic link labels in window form application -



c# - how to create dynamic link labels in window form application -

on clicking go button name given in textbox should displayed link label , should increment dynamically.

here code:

private void buttongo_click(object sender, eventargs e) { linklabelname.text = textboxname.text; }

private void btngo_click(object sender, eventargs e) { linklabel link = new linklabel(); link.text = txttext.text; pantable.controls.add(link); }

c# winforms events

Comments

Popular posts from this blog

web services - java.lang.NoClassDefFoundError: Could not initialize class net.sf.cglib.proxy.Enhancer -

Accessing MATLAB's unicode strings from C -

javascript - mongodb won't find my schema method in nested container -