I have 2 tables that I am binding to a combobox inside a DataForm. The first table is the Collection built from the Devforce entity and the second is a lookup table brought into a static resource.
With the code below the combobox selects and updates the data, however when the dataform is bound we cannot get the current value to display. I need the current value to show when the form loads.
<ComboBox Name="cmbStatus"
ItemsSource="{Binding StatusLookups,Source={StaticResource statusLookups}}"
DisplayMemberPath="Description"
SelectedItem="{Binding Path=Status_FK,Mode=TwoWay}"
SelectedValuePath="StatusCode_PK"/>