XAML Converter ConvertBack
Posted
by
MFH
on Stack Overflow
See other posts from Stack Overflow
or by MFH
Published on 2010-12-27T23:49:05Z
Indexed on
2010/12/27
23:54 UTC
Read the original article
Hit count: 210
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…
© Stack Overflow or respective owner