How to update Dynamic Resource within a Dynamic Resource? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T18:34:29Z http://stackoverflow.com/feeds/question/558090 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/558090/how-to-update-dynamic-resource-within-a-dynamic-resource 2 How to update Dynamic Resource within a Dynamic Resource? RoguePlanetoid 2009-02-17T18:18:13Z 2009-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#558249 1 Answer by MojoFilter for How to update Dynamic Resource within a Dynamic Resource? MojoFilter 2009-02-17T18:58:32Z 2009-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>&lt;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"&gt; &lt;Window.Resources&gt; &lt;SolidColorBrush x:Key="MyColor" Color="Aqua" /&gt; &lt;VisualBrush x:Key="MyBrush"&gt; &lt;VisualBrush.Visual&gt; &lt;Ellipse Height="50" Width="100" Fill="{DynamicResource MyColor}" /&gt; &lt;/VisualBrush.Visual&gt; &lt;/VisualBrush&gt; &lt;/Window.Resources&gt; &lt;Grid Background="{DynamicResource MyBrush}"&gt; &lt;Button Height="30" Width="Auto" VerticalAlignment="Center" HorizontalAlignment="Center" Content="ChangeColor" Click="Button_Click" /&gt; &lt;/Grid&gt; &lt;/Window&gt; </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#563469 0 Answer by Caleb Vear for How to update Dynamic Resource within a Dynamic Resource? Caleb Vear 2009-02-19T00:19:18Z 2009-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#764287 0 Answer by khadden for How to update Dynamic Resource within a Dynamic Resource? khadden 2009-04-18T21:52:11Z 2009-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>