Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Agregar Elementos a un ListBox - C Sharp

El código del botón,para agregar un elemento a un ListBox:
private void btnAgregar_Click(object sender, EventArgs e)
{
string elemento = txtElemento.Text;
listbox.Items.Add(elemento);
}


This post first appeared on Webmasters || Bolivia, please read the originial post: here

Share the post

Agregar Elementos a un ListBox - C Sharp

×

Subscribe to Webmasters || Bolivia

Get updates delivered right to your inbox!

Thank you for your subscription

×