Author Topic: WDE Customization | Custom Theme  (Read 1759 times)

Offline vinicius.gaspar

  • Newbie
  • *
  • Posts: 15
  • Karma: 0
WDE Customization | Custom Theme
« on: September 20, 2019, 12:38:12 AM »
I was wondering if there is anyone here who knows a way to change the color from Not Ready's icon. I know it's possible because I was able to do that using Dynamic Properties Explorer from VS but I'm not getting to do it by code.

Here is what I came with so far:

Code: [Select]
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                    xmlns:sys="clr-namespace:System;assembly=mscorlib">

    <Style x:Key="VectorOrangeIcon" TargetType="{x:Type Path}">
        <Setter Property="Fill" Value="{DynamicResource ResourceKey=IconsRedColor}"/>
    </Style>
   
</ResourceDictionary>