Hi I'm developing an wpf application and then I need to put in the taskbar a notification ball as in the image bellow
I am using this follow code
<tb:TaskbarIcon x:Name="IconeDeNotificacao"
IconSource="../Images/icon-one.ico"
ToolTipText="ArquivarNfe"
TrayLeftMouseUp="ShowWindow_Click">
<!-- Set a simple context menu -->
<!-- the data context of the context menu is the NotifyIcon itself (see more about this in DataBinding samples) -->
<tb:TaskbarIcon.ContextMenu>
<ContextMenu>
<MenuItem Header="Abrir Sistema"
Command="{commands:ShowSampleWindowCommand}"
CommandParameter="TelaPrincipal">
<MenuItem.Icon>
<fa:ImageAwesome Icon="PlayCircle" Width="10"></fa:ImageAwesome>
</MenuItem.Icon>
</MenuItem>
<Separator />
<MenuItem Header="Esconder Sistema"
Command="{commands:HideSampleWindowCommand}"
CommandParameter="TelaPrincipal">
<MenuItem.Icon>
<fa:ImageAwesome Icon="Pause" Width="10"></fa:ImageAwesome>
</MenuItem.Icon>
</MenuItem>
<Separator />
<MenuItem Header="Configurações"
Command="{commands:ConfiguracoesWindowCommand}"
CommandParameter="TelaPrincipal">
<MenuItem.Icon>
<fa:ImageAwesome Icon="Cog" Width="10"></fa:ImageAwesome>
</MenuItem.Icon>
</MenuItem>
<Separator />
</ContextMenu>
</tb:TaskbarIcon.ContextMenu>
</tb:TaskbarIcon>
But I didn't find any thing about this on the documentation
The question is: Is there some way to do this ? if yes, I can use this code or Another Library ? Maybe I am referring this as Notification Ball cause I don't know its name technically