• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

EasystepstocreateaSystemTrayApplicationwithC#z

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

next step is just enable the system icon. Here is the sample code below.

    1 using System;

    2 using System.Collections.Generic;

    3 using System.ComponentModel;

    4 using System.Data;

    5 using System.Drawing;

    6 using System.Linq;

    7 using System.Text;

    8 using System.Windows.Forms;

    9 

   10 namespace AdsenseDisabler

   11 {

   12     public partial class Form1 : Form

   13     {

   14         private NotifyIcon  sysTrayIcon; 

   15         private ContextMenu sysTrayMenu;

   16 

   17         [STAThread]

   18         static void Main()

   19         {

   20             Application.EnableVisualStyles();

   21             Application.SetCompatibleTextRenderingDefault(false);

   22             Application.Run(new Form1());

   23         }

   24 

   25         public Form1()

   26         {

   27             InitializeComponent();

   28 

   29             // Create a context menu for th systray. 

   30 

   31             sysTrayMenu = new ContextMenu();

   32             sysTrayMenu.MenuItems.Add("Enable , OnEnabled);

   33             sysTrayMenu.MenuItems.Add("Disable AdsenseDisabler", OnDisabled);

   34             sysTrayMenu.MenuItems.Add("Show Panel", OnShowed);

   35             sysTrayMenu.MenuItems.Add("Exit", OnExit); 

   36 

   37             // create and intialise the tray notify icon.

   38             // This example uses can be replaced

   39             // with your own custom icon.

   40             sysTrayIcon = new NotifyIcon();

   41             sysTrayIcon.Text = "Adsense Disabler";

   42             sysTrayIcon.Icon = new Icon(SystemIcons.Shield, 40, 40); 

   43 

   44             // Add menu to tray icon and show it. 

   45             sysTrayIcon.ContextMenu = sysTrayMenu;

   46             sysTrayIcon.Visible = true

   47         }

   48 

   49         protected override void OnLoad(EventArgs e) 

   50         { 

   51             Visible       = true; // Hide form window

   52             ShowInTaskbar = false; // Remove from taskbar.   

   53 

   54             base.OnLoad(e); 

   55         } 

   56 

   57         private void OnExit(object sender, EventArgs e) 

   58         { 

   59             Application.Exit(); 

   60         }

   61 

   62         private void OnEnabled(object sender, EventArgs e)

   63         {

   64 

   65         }

   66 

   67         private void OnDisabled(object sender, EventArgs e)

   68         {

   69 

   70         }

   71 

   72         private void OnShowed(object sender, EventArgs e)

   73         {

   74 

   75         }

   76 

   77     }

   78 }


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#WinformDataGridView分页功能的实现发布时间:2022-07-18
下一篇:
C#创建数组的几种方法发布时间:2022-07-18
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap