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
2690
Combo and IValueconverter
posted

I have combo as

 <ig:XamComboEditor Name="YComboEditor"   ItemsSource="{Binding Path=YearsData}"  
            DisplayMemberPath="SomeYear"   
            SelectionChanged="YComboEditor_SelectionChanged"    
            SelectedItem="{Binding SomeYear,Mode=TwoWay,Converter={StaticResource YearConverter}}">

 </ig:XamComboEditor>

This is populated correctly

I have IvalueConverter which checkes for the year and then should return current year as selected

For some reason the IValueconverter is not triggered

Any ideas?

Parents Reply Children
No Data