Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
170
xamComboEditor - how to edit text and update selecteditem field
posted

How do I have my xamlComboEditor set as IsEditable, update a string field on its SelectedItem when I edit the current displayed text?

                IsEditable="True"
                DisplayMemberPath="Name"
                ItemsSource="{Binding Project.Runs}"
                SelectedItem="{Binding Project.SelectedRunConfig}"
                SelectedIndex="{Binding Project.SelectedRunIndex}" />

The SelectedItem has a field called Name whick is the display member path. I wish to be able to edit the SelectedItem Name by simply editing the ComboEditor text. How can I achieve this?
 

Parents Reply Children
No Data