views:

12

answers:

1
+1  A: 

You're getting the instance of the TenantData as the ComboBox's selected item. What you want to display is the "Tenant" property. Thus, you have to do something like "myTextBox.Text = (selectedItem as TenantData).Tenant".

karmicpuppet
Thank you very much. That did the trick.
MCH