Skip to main content
Home Forums Silverlight Programming Silverlight Controls and Silverlight Toolkit DataGrid Template Column ListBox
1 replies. Latest Post by niqbal on October 6, 2008.
(0)
niqbal
Member
2 points
21 Posts
10-06-2008 5:23 AM |
I want to iterate the rows of the DataGrid and want to get the selected value of the ListBox.
10-06-2008 5:56 AM |
I've found the Solution. We will have to create a new property in the class to hold the selectedItem. And Bind the ListBox's SelectedItem='{Binding myProperty, Mode=TwoWay}' . Now upon selecting the value from the dropdown you would be able to get the selected value from this property.