Hi Harsh,
Thank you for your using our Syncfusion Products.
We have checked the reported requirement about how to display the Selected value from ComboBox in textbox. For this requirement you can use the SelectedValuePath and SelectedItem property of ComboBoxAdv as shown in the following code:
Code:
|
<syncfusion:ComboBoxAdv
Name="comboBox1"
Width="150"
DisplayMemberPath="Value"
ItemsSource="{Binding SelectedEngineTypeCollection}"
SelectedValue="{Binding ComboBoxSelectedValue}"
SelectedValuePath="Key" />
<Label
Width="150"
Margin="30"
Content="{Binding ComboBoxSelectedValue}" />
|
Please let us know if you have any other concerns.
Regards,
Vijayalakshmi VR