Tagged Questions

3
votes
2answers
833 views

Application-level Resources in a Different Assembly

This question involves the Visual Studio (2008) WPF Designer's apparent inability to handle the usage of resources located at the App.xaml level if the App.xaml is in a separate assembly from the ...
2
votes
2answers
53 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 ...
2
votes
4answers
7k views

WPF: Changing Resources (colors) from the App.xaml during runtime

I am trying to make my application more customizable by allowing users to pick a color from a Color Picker dialog, and then changing the style of the application in real time (with DynamicResource) ...
1
vote
1answer
407 views

WPF : Access Application Resources when not referencing Shell from App.xaml

I am beginner in WPF. My App.xaml looks like below app.xaml <Application x:Class="ContactManager.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...