Can I use a data template for one item without a ListBox or other items?
I have a datatemplate that I want to create in xaml, not in a list, just inside the frame and set its datacontext.
Something like (pseudo):
<Window DataContext="{StaticResource Contact}">
<src:ContactTemplate Source="{Binding}"/>
</Window>
source
share