Tagged Questions
2
votes
2answers
55 views
Scope of WPF resource : Is pushing it to application scope (app.xaml) good for performance?
A) If I have a resource to be used from a user control, which one is more good performance wise..?
To include it in the user control scope itself or refer the resource from app.xaml..?
B) Now we ...
1
vote
2answers
412 views
How can I add a ResourceDictionary defined in a subfolder to App.xaml?
All of the code samples I've found so far reference a Resource Dictionary that's not in a project subfolder (the dictionary is at the root of the project). I have mine in a subfolder, and I can't ...
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
238 views
Silverlight: how to not load MergedDictionaries from app.xaml at startup?
As a workaround for the way Silverlight loads resources, I implemented the solution posted here:
Silverlight Shared MergedDictionaries
This works fine, but it's annoying having to comment out the ...