Tagged Questions
resource dictionary are used in WPF to store resources of the application
40
votes
2answers
27k views
WPF Resource Dictionary in a separate assembly
I have resource dictionary files (MenuTemplate.xaml, ButtonTemplate.xaml, etc) that I want to use in multiple separate applications. I could add them to the applications' assemblies, but it's better ...
19
votes
1answer
12k views
Load WPF styles or other Static Resources from an external file or assembly
I have a few WPF applications and I want all my styles to be in a shared assembly instead of declaring them in each application separately.
I am looking for a way so I don't have to change all my ...
15
votes
5answers
11k views
Trouble referencing a Resource Dictionary that contains a Merged Dictionary
I have a library, CommonLibraryWpfThemes, with several Resource Dictionary XAML files in it. My Themes/Generic.xml file contains a ResourceDictionary.MergedDictionaries declaration that merges all the ...
11
votes
2answers
332 views
WPF doesn't apply style to first element
I have a simple WPF window that has 12 buttons on it. I want the same style to be applied to all of them. This code produces the same error:
<Window x:Class="TestApp.TestWindow"
...
9
votes
1answer
4k views
What is the scope of StaticResource within a WPF ResourceDictionary?
I have a WPF ResourceDictionary with the following TextBlock:
<TextBlock Visibility="{Binding Converter={StaticResource MyBoolProp ResourceKey=BoolToVis}}">
</TextBlock>
The ...
8
votes
3answers
3k views
Composite WPF (Prism) module resource data templates
Given that I have a shell application and a couple of separate module projects using Microsoft CompoisteWPF (Prism v2)...
On receiving a command, a module creates a new ViewModel and adds it to a ...
7
votes
1answer
1k views
switching wpf resource dictionaries at runtime
I am trying to build a wpf application that allows the user to change the theme at runtime. What I have done so far is create a resourcedictionary with all the colors for the application defined in ...
7
votes
2answers
2k views
Proper usage of Merged Resource Dictionaries in Silverlight 3
As I read: http://msdn.microsoft.com/en-us/library/cc903952(VS.95).aspx, specifically the section labeled "Forward References With a ResourceDictionary":
Static resource references from within
...
6
votes
2answers
1k views
Adding a Merged Dictionary to a Merged Dictionary
I can't seem to be able to add a merged dictionary to a collection of merged dictionaries within XAML.
Theme.xaml
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary ...
6
votes
2answers
2k views
Packaging ResourceDictionary for Silverlight Class Library
I have a silverlight class library (not a top-level application) with several user controls that are shared by different silverlight applications. I have gone through and pulled out several styles and ...
6
votes
1answer
2k views
Is it possible to share a ResourceDictionary file between multiple projects?
If I have a ResourceDictionary in one project, is it possible to create another project that uses resources defined in the first project? Note that both projects are WPF Applications, not ...
6
votes
3answers
9k views
Load a ResourceDictionary from an assembly
I've got an assembly somewhere on the file system, e.g. "C:\temp\test.dll".
In that assembly there's a ResourceDictionary, e.g. "abc.xaml".
How can i get that ResourceDictionary? Maybe there is a way ...
5
votes
1answer
206 views
How do I define icon resources on a per-system theme basis?
I have a WPF 4.0 application that utilizes some custom 16x16 icons in things like menu commands and the like. I'd like to have (for now) two sets of icons, the default Vista/7-ish ones and some XP-ish ...
5
votes
1answer
92 views
How does ResourceDictionary change result in DynamicResource reevaluation?
If Resources dictionary is not observable, how does DynamicResource reference work?
Do the Add / Remove methods of the resource dictionary have internal code that kind of "polls" all DynamicResource ...
5
votes
2answers
98 views
WPF images inside ResourceDictionary are singleton?
WPF...
if i add an image to my ResourceDictionary and later use StaticResource to use it at multiple places...
does that image have only one instance?
or does a new instance of that image is created ...
4
votes
1answer
483 views
ResourceDictionary with MVVM and Prism
I have set up a Prism project with one module. In the module I have defined some views. I want to use a ResourceDictionary to style UI elements.
However...if I include the following code in the ...
4
votes
2answers
303 views
WPF Custom Control Template Not Applied
I'm sure this question or derivatives of it have been asked a bazillion times, but I couldn't find anything that helped me solve the problem, so I'm asking. Please feel free to direct me to the ...
4
votes
2answers
591 views
Why are absolute uri's required for merged dictionaries in Generic.xaml?
Consider a File | New Project of a WPF Application that contains:
A new custom control named CustomControl1
Two new resource dictionaries named Dictionary1 and Dictionary2
Take the generated style ...
4
votes
5answers
2k views
Binding to ancestors from within a ResourceDictionary
How can I bind to a UserControl's property from within its ResourceDictionary? I want an object I declare in my resources to have the same DataContext as the UserControl it is contained in:
...
4
votes
1answer
606 views
XAML - MergedDictionaries throwing XmlParseException “item has already been added”. Why?
I have the following, very easy to reproduce problem:
I'm creating a xaml application which uses resources from another file. The way to go is to create a MergedDictionaries-tag to merge the local and ...
4
votes
2answers
2k views
Enable data binding in shared WPF resources inside a ResourceDictionary
I'm using the M-V-VM pattern in WPF and I have a background brush I'm going to be using rather often and I'd like to move it out in to a shared ResourceDictionary.
The only problem is the brush uses ...
4
votes
1answer
3k views
WPF: Style based on another one in a separate assembly
Assembly A - ResourceDictionary contains StyleA style.
Assembly B - ResourceDictionary.MergedDictionaries to merge resources from Assembly A into B.
I would like to create a style in Assembly B ...
4
votes
2answers
427 views
What could be used as a double sided Resource Dictionary?
I am using a ResourceDictionary, but I would like to be able to look up the value or the key with the other item. Each is always unique, so that is not a problem. Is there a type that has this ...
3
votes
2answers
168 views
using tab and carriage return character in a WPF resource dictionary
How can I use tab and carriage return characters in a WPF XAML resource dictionary?
This doesn't work for me:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
3
votes
1answer
262 views
WPF Events in ResourceDictionary for a ControlTemplate
I'm currently trying to implement a Metro styled Window.
So i've made the following styles inside a ResourceDictionary:
<ResourceDictionary ...
3
votes
1answer
491 views
WPF Shared Resource Problem - No App.xaml, No Shared Resources
I have run into a little(well big) problem in an application I am working on.
I am working on a module for an application for my company. The application is a WinForm application, but I have been ...
3
votes
3answers
2k views
Silverlight 4 - use StaticResource from one ResourceDictionary in another
If I have these dictionaries:
dict1.xaml:
<Color x:Key="Color1">Red</Color>
dict2.xaml:
<SolidColorBrush x:Key="Brush1" Color={StaticResource Color1} />
This works:
App.xaml:
...
3
votes
2answers
510 views
Images in XAML ResourceDictionary disappear on ToolBar when Menu opens
I have started to move various common Images into a ResourceDictionary and noticed an odd behavior in my WPF application. If the Image is used in a MenuItem and in a Button on a ToolBar, when I open ...
3
votes
2answers
368 views
WPF - How to point one resource (a SolidColorBrush) at another
I set up a load of SolidColorBrush and LinearGradientBrush resources in a ResourceDictionary. I used these as I was restyling several controls for use in our application.
Now I have a bunch of other ...
3
votes
1answer
227 views
Object from External ResourceDictionary
I have StoryBoard in external ResourceDictionary. I can retrive this storyboard succesfuly, but I cant sign for Completed event
I got InvalidOperationException :
Specified value of type
...
3
votes
3answers
814 views
Why can't I move my resource dictionary in Silverlight?
For some reason the following code is giving me an exception.
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
...
3
votes
2answers
223 views
Exception when adding a ResourceDictonary at runtime
I'm trying to develop a way of switching Windows Phone 7 application style depending on a setting.
The styles look like this:
core styles are separated and defined in WP7Style_Dark.xaml and ...
3
votes
1answer
2k views
Runtime theme switching with explicit styles in Silverlight 4
It's been requested that we add dynamic theme switching to our application, and I'm having problems figuring out how to do this.
Here's the current situation: our application has a merged resource ...
3
votes
2answers
586 views
Using system types in XAML as resources
I have encountered a situation where it would be very useful to specify a floating point value directly in XAML and use it as a resource for several of my UI pieces. After searching around I found a ...
3
votes
1answer
559 views
xClassNotDerivedFromElement error when adding Code Behind to Resource Dictionary in silverlight
I need to add code behind class to Resource Dictionary as described in this question. (I know that this is not a good practise but it should work based on the comments for linked question) .I'm ...
3
votes
1answer
957 views
StaticResource not found
I have the situation where a SolidColorBrush (defined in App.xaml) cannot be resolved during runtime, when i use the Brush in a Style as StaticResource.
During designtime (using Visual Studio 2010) ...
3
votes
2answers
650 views
How to reuse layouts in WPF
I'm trying to create a application that will be tabbed where each tab will have a button area and a view area.
Now each tab will essentially have the same layout just different things in the layout ...
3
votes
2answers
713 views
Silverlight 4.0: DataTemplate Error
Im trying to get the specific template in my resource dictionary. This is my resource dictionary
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
3
votes
1answer
1k views
Can you define a ResourceDictionary.MergedDictionary together with other (local) resources in <Windows.Resources>?
I would like to refer to a MergedDictionary together with locally declared resources in my Windows.Resources. However, I'm getting this error:
"All objects added to an IDictionary
must have a ...
3
votes
1answer
620 views
WPF 4: MergedDictionaries don't seem to work any more
I have the below block of XAML
'BaseStyles.xaml
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
...
3
votes
1answer
737 views
WPF reference style in resource dictionary and use triggers
I have a Style defined in a resource dictionary that applies to
all ComboBox controls. Within the ComboBox control, I reference the style like so:
Style="{DynamicResource MyComboBoxStyle}"
This ...
3
votes
1answer
92 views
WPF - Implicitly style control within another control
Is it possible in WPF to implictly style a control that sits within another control?
For example, style an image within a button, without styling all images?
3
votes
1answer
2k views
How to reference WPF style keys defined in a separate assembly in another library
I have two libraries and a single application assembly project layout and I'm wondering how can I reference styles by their key in one of my libraries that's defined in the other.
My solution ...
3
votes
2answers
3k views
Trying to use a ResourceDictionary, but styles in it come up as not found
I have a Silverlight class library, called MyClassLibrary.
In it, I have a user control, called MyControl.
Within the control I define user resources:
<UserControl.Resources>
<Style ...
3
votes
1answer
924 views
Styling a UserControl in WPF from another assembly
I have a WPF user control defined in an application assembly. I'm trying to style the user control based on styles in another (skin or theme) assembly. I don't want the theme/skin assembly which ...
3
votes
1answer
895 views
Adding DataTemplate (non-XAML) to resource dictionary in code?
I'm trying to figure out how to add a DataTemplate to the app's resource dictionary. I'm familiar with how to do so when the DataTemplate is in XAML (via a uri), but I'm kind fuzzy at how to do so ...
3
votes
2answers
489 views
Resources for both WPF and Silverlight in the same assembly
I have resources in separate assemblies to be used by multiple WPF apps and this is working fine. Now I am creating a Silverlight 3 app and am trying to use the same assembly to get the same ...
3
votes
3answers
19k views
Accessing ResourceDictionary from WPF UserControl
I'm trying to access a resource dictionary in a UserControl code-behind via C# and I'm having little success.
Merged Dictionary:
<UserControl.Resources>
<ResourceDictionary>
...
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
1answer
76 views
Visual Studio xaml editor for Resource Dictionary
Does anyone else think its a bit lame that opening the xaml for a resource dictionary defaults to a split screen for Design and Xaml?
Is there a setting I am missing? Or is this just MS' way of ...