Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
4
votes
1answer
545 views

WPF Dynamic Resource: Warning Message - “The resource 'resource' could not be resolved.”

Basically, I have a UserControl that uses a DynamicResources. The application compiles and runs fine using that resource, but it's a bit annoying to see this warning message. It makes me wonder if I'm ...
4
votes
3answers
578 views

Is there a significant performance cost to DynamicResource instead of StaticResource?

Our designer is using Blend to style our WPF application. When he chooses local resources for properties, Blend will apply them as a {DynamicResource} instead of a {StaticResource}. My guess is that ...
4
votes
3answers
433 views

WPF: Dynamic MarkupExtension- ReRendering/Updating of value

I´m using a markupextension for loading internationalized strings in a WPF application like this: <Button Content="{Translate MyText}"/> My markupextension is named "TranslateExtension" and ...
4
votes
2answers
9k views

Wpf Toolkit. Bind DataGrid Column Header to DynamicResource

I'm trying to bind DataColumn Header to DynamicResource using following code. <Window.Resources> <sys:String x:Key="HeaderText">Header Text</sys:String> ...
3
votes
3answers
452 views

Place storyboard in application resources

I need to use the same storyboard in several places therefore I placed the storyboard inside my Application.Resources . When I try to execute the storyboard the only problem is that I need to ...
3
votes
1answer
98 views

DynamicResources fail to load in a programmatically created control

I have a WPF (3.5) application using Prism to programmatically instantiate a number of views and then add them to a region. The problem I am seeing is that styles inside the view that are applied as ...
3
votes
1answer
103 views

Images in .ico as DynamicResource

Situation looks like that: I have many icons in application and they are used in few different sizes. I use icons as DynamicResource for example like that: <igRibbon:MenuTool (...) ...
3
votes
3answers
360 views

Create your own system colors

Basically, how can I create my own set of Colors in a static class or the such so that I can do something like this: What exists: <Setter ... Value="{DynamicResource {x:Static ...
3
votes
1answer
4k views

How to dynamically change ConverterParameter (or any) property of a MultiBinding (or any other) resource at runtime?

i'm new to wpf and xaml. i find solutions of most of the problems (in other languages) by searching here n there or googling around but this one made me crazy. i searched a lot on google and browsed ...
2
votes
1answer
147 views

Return a dynamic resource from a converter

I want to change the color of a WPF control depending on the state of a bool, in this case the state of a checkbox. This works fine as long as I'm working with StaticResources: My control ...
2
votes
2answers
328 views

TextBlock foreground being reset to inherited value after dynamic resource from merged dictionary is applied

EDIT: I was able to reproduce this in a very stripped-down version of the application. Here is a link to the .zip file http://www.mediafire.com/?cn918gi15uph1xe I have the module add the view to ...
2
votes
2answers
647 views

Sql, Wpf, Xaml, C#, Binding data, Dynamic resource, accessing to non-static data, Obtaining a Reference to an Object

Ok, well I am pretty pretty pretty new to WPF and XAML, despite my search I could not find a simple solution and it seems to me that I won't be able to find an answer pretty soon. The question is so ...
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 ...
2
votes
2answers
1k views

(WPF) How to set value of a sys:Double to SystemFonts.MessageFontSize from ResourceDictionary?

Scenario: I want to use 3 standard font size for my WPF application : BigFontSize, NormalFontSize, and SmallFontSize. These are double values and they are defined in resource dictionary as (where ...
1
vote
2answers
94 views

WPF Dynamic Resource Lookup Behavior with FixedPage

Having the following very simple xaml: <DocumentViewer Name="dv"> <FixedDocument Name="fd" Loaded="fd_loaded"> <FixedDocument.Resources> <Style ...
1
vote
2answers
698 views

WPF Dynamic resource example

Is there any example which can clearly state the difference between Static and dynamic resource. I know the basic difference that Static is loaded once and gets binded at start while dynamic is loaded ...
1
vote
2answers
611 views

Set Style for user control

I am trying to set a style for my user control. The UserControl is in a project "Controls" and the theme is in a project "MainProject" <UserControl x:Class="Controls.OutputPanel" ...
1
vote
1answer
861 views

Use IValueConverter with DynamicResource?

Is there a way to define a converter when using the DynamicResource extension? Something in the lines of <RowDefinition Height="{Binding Source={DynamicResource someHeight}, ...
1
vote
1answer
929 views

WPF staticresource references to Logical Resources in DataTemplates not resolving at runtime

Have I missed something in the step up from .net 3.5 to .net 4 because I'm seeing seemingly buggy behaviour that seems contrary to the goal of the system. I am trying to drum up a simple MVVM library ...
1
vote
1answer
499 views

replace “DynamicResource” with “StaticResource”

To realize my application I have used a lot Blend3. When Blend3 wants to link a resource to another resource, it uses many times the link-type "DynamicResource". As I have understood (but I could have ...
1
vote
1answer
751 views

How to bind with dynamic resource and specifying a path

I want to bind to a resource (DynamicResource) and access properties on that resource, but is there a way to do that? (I want to visualize the default values from constructor in the xaml editor in ...
1
vote
2answers
872 views

How are DynamicResources built and their use in contextmenus

Are dynamic resources truly dynamic? If I define a DynamicResource, I realise that an expression is created (where?) that is not translated into a resource until runtime, however, What I do not ...
1
vote
0answers
221 views

How to define value of dynamic resource based on another dynamic resource?

Is it possible to assign value to a dynamic resource from another dynamic resource? For example <sys:Double x:Key="ButtonWidth">48</sys:Double> <sys:Double x:Key="SmallButtonWidth"> ...
1
vote
0answers
946 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
1answer
405 views

DependencyPropert not set from XAML with DynamicResource as parameter

I'm trying to develop a custom tri-state button user control and so far I've been using CTF to set properties. But I would like to change this to be using the WPF property system with ...
0
votes
0answers
31 views

Custom ResourceDictionary loading wpf

In My Host application App.xml I have defined my Resources See Below <ResourceDictionary Source="Themes\MyBrushes.xaml" /> <ResourceDictionary Source="Themes\MyButtonStyles.xaml" /> ...
0
votes
1answer
48 views

Code-behind static/dynamic properties in WPF and Naming Conundrum

I have a button defined in my XAML which has a button style and a vector graphic, it is defined thus: <Button Height="48" Width="48" ...
0
votes
1answer
84 views

Setting resource styles dynamically through binding in WPF

I am trying to make the color scheme of my application dynamic so that I can have a color value in a property(hopefully coming from the database) that determines the color scheme of my application. I ...
0
votes
2answers
409 views

WPF from DynamicResource to StaticResource

I had been working on a WPF project for a while, but haven't touched it in 2 months now. Now that I'm back on it, I have the following problem: I use merged dictionaries to create skins, and easily ...
0
votes
1answer
416 views

Dynamically change resource of executable

I have two C# executables, patcher.exe, and generator.exe. Now patcher.exe has a .Net resource 'config.dat', and it's empty. What I want is that generator.exe, can change (completely overwrite) the ...
0
votes
1answer
218 views

ListView DynamicResource

When attempting to use a DynamicResource as an ItemsSource for a ListView my application is outputting the error: Window must be the root of the tree. Cannot add Window as a child of Visual. ...
0
votes
2answers
195 views

WPF Style does not affect certain properties

I've got a Style specified for Paragraph as part of my FlowDocumentReader's Resources section: <FlowDocumentReader> <FlowDocumentReader.Resources> <Style x:Key="myStyle" ...
0
votes
1answer
336 views

Why Storyboard value wouldn't get from a resource or binding?

I have construction below and it works: <Storyboard x:Key="GrowOnStart"> <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(Canvas.Left)" Storyboard.TargetName="window"> ...
0
votes
0answers
1k views

DynamicResource and Dynamic Items in ContextMenu on XamDataGrid

I would like to dynamically create a set of context menu options based upon some properties. Currently, I am creating a context menu as a DynamicResource with the visibility of the menu options ...
0
votes
1answer
347 views

DynamicResource not working, but StaticResource does?

Here is the scenario: 1) Open Visual Studio 2008, create new project... 2) Select WPF Custom Control Library as the project type 3) Open the Generic.xaml resource dictionary located in the Themes ...
0
votes
4answers
2k views

Get DynamicResource Binding in WPF

Can any one help me to get DynamicResource Binding in WPF by code? I have set binding Like follow, TextBlock Background={DynamicResource ColorA} Name="TB" in Xaml. and i need to get the - TB's ...
0
votes
2answers
444 views

WPF Dynamic resource reference

HI Am load a string xaml with DynamicResource assigned to a Background property. Is there a way to get the reference of the dynamic resource. Background="{DynamicResource Color1}" I want to get ...
0
votes
1answer
96 views

Trying to understand details of the Application Resource assignment

I have a ComboBox with ItemsSource="{DynamicResource testResource}". The testResource is the Application resource that I set in C# code. What I have noticed is that if I load Window befor Application ...