Un modèle d'utilisation courant consiste à avoir l'icône de notification identique à celle de la fenêtre principale. L'icône est définie comme un fichier PNG.
Pour ce faire, ajoutez l'image aux ressources du projet, puis utilisez-la comme suit:
var iconHandle = MyNamespace.Properties.Resources.MyImage.GetHicon();
this.notifyIcon.Icon = System.Drawing.Icon.FromHandle(iconHandle);
Dans la fenêtre XAML:
<Window x:Class="MyNamespace.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:local="clr-namespace:Seahorse"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="600"
Icon="images\MyImage.png">