1
This is a problem that is caused by the way binding happens. In order to get to the value you ar looking for you will need to dig a little, but if you start with this line of code you should be able to get the actual value you want.
((DataRowView)cb_client_cab.SelectedItem).Row.ItemArray
Using this you can find the actual Column you want, which would be the one that you are binding to the Textblock Text property. Then you can reference like this:
((DataRowView)cb_client_cab.SelectedItem).Row[3]
0
Hi John,
I had an issue with listview before I saw your reply. But after read your answer I solved it , Thank you verymuch.
Cheers.