Hi,
How can I get selected value of ListBox into textbox.
Thanks, in advance
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Priya LingePosted Sep 12, 2011, 12:55 AM
You can selected value of listbox in textbox as following way,
ListBoxItem item = (ListBoxItem)listBox1.SelectedItem;
textBox1.Text = item.Content.ToString();
Hope this will help you.
Thanks.
Jiteendra SampathiraoPosted Sep 12, 2011, 12:45 AM
This Thread will help you...Click