R4R
Right Place For Right Person TM
R4R C#C# TutorialsNotifyIcon Control
previous

Home

Next

NotifyIcon Control

Display an icon on notification area with corresponding to the application is running. Like shown in below example.

 

Properties of NotifyIcon

                                       

Events of Notify Icon

                                      

Code for mouse double click event on NotifyIcon


 private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)
        {
            if (this.WindowState == FormWindowState.Minimized)
            {
                this.Show();
                this.WindowState = FormWindowState.Normal;
            }

            // Activate the form.

            this.Activate();
            this.Focus();

        }

    

On double-clicking Icon to tab control application you get your application as on desktop.

previous

Home

Next


Tolal:0 Click:
Show All Comments

Post Your Comments

Your Name:

Your Email ID :
Comments :
URL
  =* Enter SUM

New Updates

R4R
R4R
R4R
R4R
R4R
R4R
R4R
R4R