Tagged Questions
4
votes
1answer
310 views
datatemplate in app.xaml is not getting picked up without any styles?
I have a DataTemplate in app.xaml that binds a view to a viewmodel.
<Application.Resources>
<DataTemplate DataType="{x:Type vm:someviewmodeltype}">
<vw:somevwcontrol />
...
1
vote
2answers
2k views
DataTemplates in resource dictionaries don't inherit from app.xaml styles?
I added custom named styles to the app.xaml.
I created an external resource dictionary (which I attach in the merged dictionaries of the app.xaml) and when I try to use one of the above named styles ...