Tagged Questions
4
votes
1answer
328 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 ...
0
votes
1answer
23 views
WPF: Why is my style in Generic.xaml not working?
I'm cleaning up App.xaml and moved some styles into Generic.xaml. But then, these styles don't have any effect. Why? Is this correct thing to do to make App.xaml tidy?