我创建了一个演示应用程序,并希望始终像防病毒、micromax 数据卡软件或任何其他通知软件一样运行。
我的主要目标是:当我关闭应用程序时,我的应用程序可能会关闭,但它应该运行并显示在 gtalk、skypee 等通知区域图标中,当它单击时,应用程序窗口将打开并显示在任务栏中.
怎么做请用代码和例子描述一下
我希望您知道 WinForms 中的通知图标和上下文菜单条。添加 ContextMenustrip 选择编辑项目并添加show
和Exit
菜单项工具条。添加相应的点击事件。
using System;
using System.Windows.Forms;
namespace test
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
//Form Closing Event
e.Cancel = true;
Hide();
}
private void toolStripMenuItem1_Click(object sender, EventArgs e)
{
//Exit in notify icon Context menu tool strip
Environment.Exit(-1);
}
private void toolStripMenuItem2_Click(object sender, EventArgs e)
{
//Show in notify icon context menu tool strip
Show();
}
}
}