Tagged Questions
The componentresourcekey tag has no wiki summary.
2
votes
2answers
1k views
WPF StaticResource works, DynamicResource doesn't
I have been trying for a day now, to no avail, to create a bunch of brushes in the theme then using them with DynamicResource in a custom control. What I did is this:
create the theme generic.xaml ...
1
vote
0answers
942 views
ComponentResourceKey as DynamicResource problem
I'm seeing some unexpected behavior using ComponentResourceKey. The problem came up because I was using names used in the SystemColors class.
Consider the following code:
First I expose a ...
1
vote
2answers
3k views
How do I get the actual resource from a ComponentResourceKey?
I have a ComponentResourceKey defined in my resource dictionary like this:
<Style x:Key="{ComponentResourceKey TypeInTargetAssembly={x:Type local:Resources}, ResourceId=BaseControlStyle}" ...
0
votes
0answers
21 views
PlainView will not load xaml page related to componentResourceKey and resourceid
I have a external library to hold all themes in which i am defining a style for PlainViews. The plainview class that extends viewbase sits in another project.
My app won't load the xaml for the ...
0
votes
1answer
641 views
WPF ResourceDictionary Item has already been added using ComponentResourceKey
I have the following ResourceDictionary that gets merged into my Themes/Generic.xaml file
<DataTemplate DataType="{x:Type model:RequirementResourceRelation}" x:Key="{x:Static ...
0
votes
1answer
1k views
Getting a ComponentResourceKey to Work?
I am building a WPF app with several assemblies, and I want to share a resource dictionary among them. That requires a ComponentResourceKey. I have built a small demo to test out the CRK, and I can't ...