WARNING: Windows Phone speak below
I'm creating custom ContentView
and am trying to do the equivalent of TemplateBinding
in a ContentTemplate
to a DataTemplate
in a ContentControl
. Creating Bound properties appears to very similar to creating DependencyProperties. But I'm getting an error: DataTemplate is not a BindableObject I've tried assigning the DataTemplate
to another ContentView.Content
, but that fails as well - Cannot implicitly convert type 'Xamarin.Forms.DataTemplate' to 'Xamarin.Forms.View
Is what I'm trying to do impossible in XF or has someone figured out a way to assign a DataTemplate
to something other than an IEnumerable List's ItemTemplate
?