NotifyIcon Sample : NotifyIcon « GUI Windows Forms « C# / CSharp Tutorial

C# / CSharp Tutorial
1. Language Basics
2. Data Type
3. Operator
4. Statement
5. String
6. struct
7. Class
8. Operator Overload
9. delegate
10. Attribute
11. Data Structure
12. Assembly
13. Date Time
14. Development
15. File Directory Stream
16. Preprocessing Directives
17. Regular Expression
18. Generic
19. Reflection
20. Thread
21. I18N Internationalization
22. GUI Windows Forms
23. 2D
24. Design Patterns
25. Windows
26. XML
27. ADO.Net
28. Network
29. Directory Services
30. Security
31. unsafe
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
C# / CSharp Tutorial » GUI Windows Forms » NotifyIcon 
22. 43. 1. NotifyIcon Sample
using System;        
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

namespace NotifyIconExample
{
  /// <summary>
  /// Summary description for NotifyIconForm.
  /// </summary>
  public class NotifyIconForm : System.Windows.Forms.Form
  {
    private System.Windows.Forms.NotifyIcon notifyIcon1;
    private System.Windows.Forms.Button button1;
    private System.ComponentModel.IContainer components;

    public NotifyIconForm()
    {
      //
      // Required for Windows Form Designer support
      //
      InitializeComponent();

      //
      // TODO: Add any constructor code after InitializeComponent call
      //
      this.notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);
    }

    /// <summary>
    /// Clean up any resources being used.
    /// </summary>
    protected override void Disposebool disposing )
    {
      ifdisposing )
      {
        if (components != null
        {
          components.Dispose();
        }
      }
      base.Disposedisposing );
    }

    #region Windows Form Designer generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
      this.components = new System.ComponentModel.Container();

      this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
      this.button1 = new System.Windows.Forms.Button();
      this.SuspendLayout();
      // 
      // notifyIcon1
      // 
      this.notifyIcon1.Icon = new Icon("yourIcon.ico");
      this.notifyIcon1.Text = "Hello from NotifyIconExample";
      // 
      // button1
      // 
      this.button1.Location = new System.Drawing.Point(109122);
      this.button1.Name = "button1";
      this.button1.TabIndex = 0;
      this.button1.Text = "Hide in tray";
      this.button1.Click += new System.EventHandler(this.button1_Click);
      // 
      // NotifyIconForm
      // 
      this.AutoScaleBaseSize = new System.Drawing.Size(513);
      this.ClientSize = new System.Drawing.Size(292266);
      this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                      this.button1});
      this.Name = "NotifyIconForm";
      this.Text = "NotifyIconForm";
      this.ResumeLayout(false);

    }
    #endregion

    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main() 
    {
      Application.Run(new NotifyIconForm());
    }

    private void button1_Click(object sender, System.EventArgs e)
    {
      notifyIcon1.Visible = true;
      this.Visible = false;
    }

    private void notifyIcon1_DoubleClick(object sender, System.EventArgs e)
    {
      notifyIcon1.Visible = false;
      this.Visible = true;
    }

  }
}
22. 43. NotifyIcon
22. 43. 1. NotifyIcon Sample
22. 43. 2. Use Timer to update NotifyIconUse Timer to update NotifyIcon
22. 43. 3. Use Timer to update User interface: NotifyIconUse Timer to update User interface: NotifyIcon
ww_w_._j___a__v__a__2___s__.co_m | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.