The resource-dictionary tag has no wiki summary.
0
votes
1answer
138 views
edit style element from button WPF
I have the following style inside a resource dictionay
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
...
0
votes
2answers
286 views
png image inside WPF button
Im tring to create a WPF button with a png image inside, but background doesnt works
<Setter Property="Width" Value="30"/>
<Setter Property="Height" Value="30"/>
<Setter ...
1
vote
1answer
559 views
Blend in visual studio 2012: Missing the “resources” window i used to use in blend 4
In blend 4 i often open a resource dictionary (i.e. "Generic.xaml") by clicking the "resources" tab (next to the property tab on the right pane), navigate to a resource and click on its icon to edit ...
1
vote
2answers
1k views
How does a WPF ResourceDictionary Work? (I can't get mine to load.)
I coded up a custom assembly that lets me view my Prism Regions at Design Time.
One of the things my assembly does is that it will load the assembly from the startup project. (Using Prism's module ...
1
vote
0answers
153 views
Silverlight , animation in the custom control
I have created a custom Control in Silverlight,
I've added the template into the generic.xaml file Resource dictionary.
In Addition to the Template I have put the StoryBoard Object to this Dictionary
...
0
votes
2answers
332 views
Nested resource dictionaries
I want to define multiple themes for my application and switch them every time I like, but I want to put styles of each control of each theme in a separate ResourceDictionary so it makes files in a ...
4
votes
1answer
8k views
tag does not exist in XML namespace
This error seems to be posted all over the place but each one seems to have its own solution, none of which solved my problem.
I am getting an error for a Resource Dictionary I am making (and later ...
1
vote
1answer
222 views
Is it possible to reference a resource dictionary and define a style in the same resource section?
Like so:
<Window x:Class="WpfApplication3.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" ...
1
vote
0answers
274 views
How do I create a MEF compatible component with resources?
This seems like such a simple requirement but I'm hitting my head against a wall!
I've got an existing SL4 application, which I'm trying to add in modules using MEF. I've created my loading ...
2
votes
4answers
9k views
Add collection or array to wpf resource dictionary
I've search high and low and can't find an answer to this. I have two questions
How do you create an array or collection in XAML. I've got an array I want to stick in there and bind to a combo ...
14
votes
1answer
11k views
Access ResourceDictionary items programmatically
I have a Silverlight controls assembly, called "MySilverlightControls". Several folders down into that assembly i have a class which extends a grid column from a third party vendor, let's call it ...