XAML Converter ConvertBack
- by MFH
Is there a way to access the ConvertBack-Method of a Converter that implements IValueConverter directly from XAML?
The basic situation is the following (relationsships):
Route (1)<->(CN) Training (1)<->(CN) Kilometer
The DataContext is set to a Training. From here I use the Convert-Method to access all my Kilometers. I also have a Converter from Route to IList<Training> and the ConvertBack would lookup the Route for a Training. But I seem to not be able to access that Method from XAML…