Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
4answers
9k views

Using MergedDictionaries in generic.xaml in Silverlight 3

In WPF it was possible to organise the XAML for multiple user controls by keeping the markup in separate XAML files in the themes folder and then using MergedDictionaries to import them into ...
4
votes
3answers
749 views

Silverlight Shared MergedDictionaries

I am using Silverlight 4 and trying to share some common styles (colors, brushes). My take was to put them into a "Common.xaml" Resource Dictionary and then use it in all other Resource Dictionaries. ...
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 ...
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 ...
2
votes
2answers
258 views

Problem reference converter from an external assembly

I am creating a Resource Dictionary, where I reference all my converters, so there is no need to reference each individual converter. My converters are in the different assembly, to import them I do ...
2
votes
1answer
159 views

Using BasedOn property with a Style defined in a different dictionary

The application I'm working on has 2 ResourceDictionary, DefaultStyles.xaml and CustomStyles.xaml. Is it possible that a style in the CustomStyles dictionary uses a base style defined in the other ...
2
votes
1answer
821 views

Replacing Merged Resource Dictionaries on Load of Silverlight Application

I have a set of styles and brushes defined in a ResourceDictionary that I am loading as a MergedDictionary in XAML of my top-level control: <ResourceDictionary.MergedDictionaries> ...
1
vote
3answers
339 views

MergedDictionaries and Resource lookup

i have a problem with Resource dictionaries and mergeddictionaries in general, especially when it comes to resource-lookup performance. After some performance testing i found that ...
1
vote
1answer
533 views

External Merged Dictionaries Broken in Silverlight 3 RTM?

I just want to reference a resource dictionary in a referenced assembly. Assembly name: ResourceTest.Content Resource Dictionary Path: ./Dictionary2.xaml This was working on SL3 Beta 1: ...
0
votes
1answer
42 views

Unable to attach multiple styles in Visual Studio 2008

Helo! I create in my project a folder named 'Templates'. In this folder I store all my DataTemplates declared in various ResourceDictionary files. I am attaching it (so it becomes a StaticResource ...
0
votes
1answer
169 views

How do I load MergedResources at runtime? My code is not working as intended

I have a desktop WPF application that loads it's resources from the web, this allows us to do different things like...add a christmas theme later on down the road around the holidays if we want. To ...
0
votes
3answers
116 views

Strange Style Behaviour in wpf?

Ok, I was programming an app that loaded merged dictionaries on runtime to change appearance and behaviour when I got stuck : some of the controls on my forms just weren't reacting to the styles I ...