Tray Icon Demo : Notify Icon Tray « GUI « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » GUI » Notify Icon TrayScreenshots 
Tray Icon Demo

Imports System
Imports System.Drawing
Imports System.Data
Imports System.IO
Imports System.Collections
Imports System.Windows.Forms
Imports System.Drawing.Printing

Public Class MainClass
    Shared Sub Main()
       Dim form1 As Form = New Form1()
       Application.Run(form1)
    End Sub
End Class


Public Class Form1
    Inherits System.Windows.Forms.Form

    Private _loadCalled As Boolean = False

#Region " Windows Form Designer generated code "

        Public Sub New()
            MyBase.New()

            'This call is required by the Windows Form Designer.
            InitializeComponent()

            'Add any initialization after the InitializeComponent() call

        End Sub

        'Form overrides dispose to clean up the component list.
        Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
            If disposing Then
                If Not (components Is NothingThen
                    components.Dispose()
                End If
            End If
            MyBase.Dispose(disposing)
        End Sub

        'Required by the Windows Form Designer
        Private components As System.ComponentModel.IContainer

        'NOTE: The following procedure is required by the Windows Form Designer
        'It can be modified using the Windows Form Designer.  
        'Do not modify it using the code editor.
        Friend WithEvents icnNotify As System.Windows.Forms.NotifyIcon
        <System.Diagnostics.DebuggerStepThrough()Private Sub InitializeComponent()
        Me.components = New System.ComponentModel.Container()
        Dim resources As System.Resources.ResourceManager = New System.Resources.ResourceManager(GetType(Form1))
        Me.icnNotify = New System.Windows.Forms.NotifyIcon(Me.components)
        '
        'icnNotify
        '
        Me.icnNotify.Icon = New System.Drawing.Icon("test.ico")
        Me.icnNotify.Text = "Right-click me to view Favorites?"
        Me.icnNotify.Visible = True
        '
        'Form1
        '
        Me.AutoScaleBaseSize = New System.Drawing.Size(513)
        Me.ClientSize = New System.Drawing.Size(292273)
        Me.Name = "Form1"
        Me.ShowInTaskbar = False
        Me.Text = "Form1"
        Me.WindowState = System.Windows.Forms.FormWindowState.Minimized

    End Sub

#End Region


    Protected Overrides Sub OnVisibleChanged(ByVal e As System.EventArgs)
        If _loadCalled = False Then
            Return
        End If
        ' if the user can see us, hide us...
        If Me.Visible = True Then Me.Visible = False
    End Sub

    Protected Overrides Sub OnLoad(ByVal e As System.EventArgs)
        Dim menu As New ContextMenu()
        menu.MenuItems.Add(New ActionMenuItem())

        menu.MenuItems.Add("-")

        menu.MenuItems.Add(New ExitMenuItem())

        icnNotify.ContextMenu = menu

        _loadCalled = True
        Me.Hide()
    End Sub

End Class

Public Class ActionMenuItem
    Inherits MenuItem

    ' Constructor...
    Public Sub New()
        Text = "Some Action..."
    End Sub

    ' OnClick...
    Protected Overrides Sub OnClick(ByVal e As System.EventArgs)
        MessageBox.Show("Action")
    End Sub

End Class

Public Class ExitMenuItem
    Inherits MenuItem

    ' Constructor...
    Public Sub New()
        Text = "Exit"
    End Sub

    ' OnClick...
    Protected Overrides Sub OnClick(ByVal e As System.EventArgs)
        Application.Exit()
    End Sub

End Class
           
       
Related examples in the same category
1.Use Notify Icon
w__w__w__.___jav__a__2___s___.c___o__m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.