Rohan Ramani

Rohan Ramani

  • NA
  • 786
  • 138.4k

How to select listbox item into textbox in wpf

Apr 4 2018 3:59 AM

I have listbox with items,

I want to select items into text box from listbox.

  1. <ListBox Name="listbox" Margin="118,77,293,103">   
  2. <ListBoxItem Content="Abc"/>   
  3.            <ListBoxItem Content="Pqr"/>   
  4.            <ListBoxItem Content="Xyz"/>   
  5.            <ListBoxItem Content="Lmn"/>   
  6.            <ListBoxItem Content="Tuv"/>   
  7.        </ListBox>   
  8.    
 

Answers (1)