Listing 1 Core code of the sample tray application
void mnuActivate_Click(object sender, EventArgs e) { PropertyDialog dlg = new PropertyDialog(); dlg.ShowDialog(); } void mnuExit_Click(object sender, EventArgs e) { this.Close(); } void TrayIcon_Click(object sender, EventArgs e) { // TO DO: display the context menu } void TrayIcon_DoubleClick(object sender, EventArgs e) { mnuActivate_Click(sender, EventArgs.Empty); }