Genesys CTI User Forum
Genesys CTI User Forum => Genesys-related Development => Topic started by: vinicius.gaspar on September 19, 2019, 03:38:12 PM
-
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]
<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>
[/code]