How to update Dynamic Resource within a Dynamic Resource? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T18:34:29Zhttp://stackoverflow.com/feeds/question/558090http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/558090/how-to-update-dynamic-resource-within-a-dynamic-resource2How to update Dynamic Resource within a Dynamic Resource?RoguePlanetoid2009-02-17T18:18:13Z2009-04-18T21:52:11Z
<p>I have a visual brush which is a group of shapes, the main colour of which is a dynamic resource itself - so the shape is for example MyShape and the Colour, MyColour which is referenced by the Shape object.<br />
My problem is when I update the colour for this - it only happens the first time the shape is loaded (the colour needs to be set first) however as much as I change the colour it won't update the dynamic resource that uses the colour - how do I make this work?<br />
Just need to make a dynamic resource work within another dynamic resource and have them both update when I change the colour.<br />
I have no idea how to get this to work - I spent time creating a colour-picker for WPF only to find I cannot change the colour of this item - 1-Tier resources work where I set the brush/colour directly but not a colour within another object or 2-Tier Resource.</p>
<p>Edit: My problem seems to be specific to using these in a seperate Resource / Dictionary as my program needs to access this item from a class not the Window, the main example mentioned does not work when the MyColor is in a seperate Resource.</p>
http://stackoverflow.com/questions/558090/how-to-update-dynamic-resource-within-a-dynamic-resource/558249#5582491Answer by MojoFilter for How to update Dynamic Resource within a Dynamic Resource?MojoFilter2009-02-17T18:58:32Z2009-02-17T18:58:32Z<p>Unless I misunderstand the situation, exactly what you're talking about works pretty well. I just tried it out with this Xaml:</p>
<pre><code><Window x:Class="ConditionalTest.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
<Window.Resources>
<SolidColorBrush x:Key="MyColor" Color="Aqua" />
<VisualBrush x:Key="MyBrush">
<VisualBrush.Visual>
<Ellipse Height="50" Width="100" Fill="{DynamicResource MyColor}" />
</VisualBrush.Visual>
</VisualBrush>
</Window.Resources>
<Grid Background="{DynamicResource MyBrush}">
<Button Height="30" Width="Auto" VerticalAlignment="Center" HorizontalAlignment="Center" Content="ChangeColor" Click="Button_Click" />
</Grid>
</Window>
</code></pre>
<p>And then changed the color in the click handler for that button:</p>
<pre><code>private void Button_Click(object sender, RoutedEventArgs e)
{
((SolidColorBrush)Resources["MyColor"]).Color = Colors.Purple;
}
</code></pre>
<p>And it worked like a champ.</p>
http://stackoverflow.com/questions/558090/how-to-update-dynamic-resource-within-a-dynamic-resource/563469#5634690Answer by Caleb Vear for How to update Dynamic Resource within a Dynamic Resource?Caleb Vear2009-02-19T00:19:18Z2009-02-19T00:19:18Z<p>Can you post an example of how you are attempting to change the color in the resource dictionary? </p>
<p>When I make a sample app and try to change the resource value it appears that the SolidColorBrush in the resource dictionary has been frozen so it can't be modified. To get around this I just set the new value to a new SolidColorBrush.</p>
http://stackoverflow.com/questions/558090/how-to-update-dynamic-resource-within-a-dynamic-resource/764287#7642870Answer by khadden for How to update Dynamic Resource within a Dynamic Resource?khadden2009-04-18T21:52:11Z2009-04-18T21:52:11Z<p>Wow, thanks MojoFilter. I've been trying to do this with ComponentResourceKeys and it never worked. So simple this way. I'm using it to set a common font size throughout my app. So there is a in my resource dictionary. This works for me as long as I merge my resource dictionary into all my windows.</p>