How to update documentation

Suco <[email protected]> Wed, 13 Feb 2008 16:40:19 +0100
Newsgroups gmane.comp.gnome.mono.documentation
Message-ID <[email protected]>
I was looking for info of how to show an icon in the system tray, and
I found this page:

http://www.mono-project.com/GtkSharpNotificationIcon

But the info is outdated and now exists other more efficient way to do that:

StatusIcon trayIcon = new StatusIcon(Gdk.Pixbuf.LoadFromResource("icon.png"));
trayIcon.Visible = true;
trayIcon.Activate += OnTrayIconClicked;
trayIcon.PopupMenu += OnTrayIconPopup;
trayIcon.Tooltip = Catalog.GetString("example icon");

How can I update the page? or Can a maintainer update the info?
_______________________________________________
Mono-docs-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-docs-list