28 lines
817 B
C#
28 lines
817 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Saviour_Backup_System
|
|
{
|
|
class notificationIcon
|
|
{
|
|
internal NotifyIcon notifyIcon = new NotifyIcon() ;
|
|
internal static ContextMenu contextMenu = new ContextMenu();
|
|
|
|
internal notificationIcon()
|
|
{
|
|
contextMenu.MenuItems.Add("Show Interface", displayWindow);
|
|
|
|
notifyIcon.Text = "Saviour Backup System";
|
|
notifyIcon.Icon = Properties.Resources.redCDIconICO;
|
|
|
|
notifyIcon.ContextMenu = contextMenu;
|
|
notifyIcon.Visible = true; //finally displays the tray icon
|
|
}
|
|
|
|
private static void displayWindow(object sender, EventArgs e) { setup.MW.Show(); }
|
|
}
|
|
}
|