Click here to Skip to main content
15,917,061 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
My Code is:

C#
public ContextMenu traymenu;

public Form()
       {
           trayMenu = new ContextMenu();
           trayMenu.MenuItems.Add("Logout", OnExit);

           trayIcon = new NotifyIcon();
           trayIcon.Text = "KHorizon Chat";
           trayIcon.Icon = new System.Drawing.Icon(KHorizon_Chat.Properties.Resources.chat, 40, 40);

           trayIcon.ContextMenu = trayMenu;
           trayIcon.Visible = true;
           InitializeComponent();
       }
private void Form_Load(object sender, EventArgs e)
       {
           this.WindowState = FormWindowState.Minimized;
           this.Visible = false;
       }
private void OnExit(object sender, EventArgs e)
       {
           System.Environment.Exit(0);
       }


solution need:
I need the contextmenu to be displayed with sub-menus?
Posted

1 solution

 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 13-Jun-13 2:11am    
Are you talking to yourself?
—SA
riodejenris14 13-Jun-13 4:47am    
bloody hell!!! mind ur words and work if u can help me out else shut.......
Sergey Alexandrovich Kryukov 13-Jun-13 11:59am    
Let me decide what to comment on and what not. I did not say you any rude words.
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900