I have a view with couple of data templates in the resources of that view. (I don't want to put it somewhere global since its only needed by this particular view)
Based on value I get in converter I switch the template.
public class SplitTemplateSelector : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
int splitCount = (int)value;
var _view = new IdtDetailView();
DataTemplate template;
if (splitCount == 1)
{
//(DataTemplate)_view.Resources["SingleSplitTemplate"];
template = (DataTemplate)_view.Resources.Where(w => w.Key.Equals("SingleSplitTemplate")).FirstOrDefault().Value;
}
else
{
template = (DataTemplate)_view.Resources.Where(w => w.Key.Equals("MultiSplitTemplate")).FirstOrDefault().Value;
}
return template;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotSupportedException();
}
}
This works as intended, however because I instantiate new IdtDetailView(), I run into some problems where variables aren't set-up properly etc. Therefore my question is...
How do I pass or access view which called this converter so that I don't have to create new IdtDetailView?