I have been trying to find a way to add a notify Icon to an app I am writing in WPF C#. I have found many links to WPF NotifyIcon and while it does do what I want,5 its adds tens of megs to the memory footprint of a 5-8 meg footprint app. It is a bit overkill.
I have also found many tutorials on how to use System.Window.Form to do this and most of them just say to reference them (I assume this means using the 'using' directive). When I try it gives me and error saying that that "forms" doesn't exist in the namespace "Windows". I thought maybe this was outdated and depreciated but I came across the MSDN Documentation for NotifyIcon and it looks current to 4.5.
Is there another way I should be implementing this? Any help would be appreciated.
Thanks

