Class that allow to receive shell notifications !!!!! Add this code to your registered form : !!!!! protected override void WndProc(ref Message m) { switch(m.Msg) { case (int) ShellNotifications.WM_SHNOTIFY: if(Notifications.NotificationReceipt(m.WParam, m.LParam)) NewOperation((NotifyInfos) Notifications.NotificationsReceived[Notifications.NotificationsReceived.Count-1]); break; } base.WndProc(ref m); }
 public NotifyInfos(ShellNotifications.SHCNE notification) { Notification = notification; Item1 = IntPtr.Zero; Item2 = IntPtr.Zero; }