资源简介

系统托盘程序示例程序关闭后最小化到系统托盘,单机托盘图标可以显示主程序,右键单击托盘图标可以打开其他窗口,添加一个 NotifyIcon 组件和一个 ContextMenuStrip组件到主窗体

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace 系统托盘程序示例
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_FormClosing(object sender FormClosingEventArgs e)
        {
            // FormMain formmain = new FormMain();
            // formmain = (FormMain)this.Owner;  //将全局变量this.Owner强制转换给FormMain类型
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       24462  2012-11-19 08:51  26.ico
     文件        1984  2012-11-19 08:51  51Aspx源码必读.txt
     文件         636  2012-11-19 08:51  Form1.cs
     文件        1508  2012-11-19 08:51  Form1.Designer.cs
     文件        5817  2012-11-19 08:51  Form1.resx
     文件        2772  2012-11-19 08:51  FormMain.cs
     文件        5285  2012-11-19 08:51  FormMain.Designer.cs
     文件       80084  2012-11-19 08:51  FormMain.resx
     文件        4945  2012-11-19 08:51  from.gif
     文件         508  2012-11-19 08:51  Program.cs
     文件         125  2012-11-19 08:51  最新Asp.Net源码下载.url
     文件        4026  2012-11-19 08:51  系统托盘程序示例.csproj
     文件         889  2012-11-19 08:51  系统托盘程序示例.sln
     文件       33792  2012-11-19 08:51  系统托盘程序示例.suo
     文件       60928  2012-11-19 08:51  bin\Debug\系统托盘程序示例.exe
     文件       40448  2012-11-19 08:51  bin\Debug\系统托盘程序示例.pdb
     文件       11600  2012-11-19 08:51  bin\Debug\系统托盘程序示例.vshost.exe
     文件         490  2012-11-19 08:51  bin\Debug\系统托盘程序示例.vshost.exe.manifest
     文件        2867  2012-11-19 08:51  obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        6541  2012-11-19 08:51  obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     文件         774  2012-11-19 08:51  obj\x86\Debug\GenerateResource.read.1.tlog
     文件        1032  2012-11-19 08:51  obj\x86\Debug\GenerateResource.write.1.tlog
     文件        2749  2012-11-19 08:51  obj\x86\Debug\系统托盘程序示例.csproj.FileListAbsolute.txt
     文件        1036  2012-11-19 08:51  obj\x86\Debug\系统托盘程序示例.csproj.GenerateResource.Cache
     文件       60928  2012-11-19 08:51  obj\x86\Debug\系统托盘程序示例.exe
     文件         180  2012-11-19 08:51  obj\x86\Debug\系统托盘程序示例.Form1.resources
     文件       49792  2012-11-19 08:51  obj\x86\Debug\系统托盘程序示例.FormMain.resources
     文件       40448  2012-11-19 08:51  obj\x86\Debug\系统托盘程序示例.pdb
     文件         180  2012-11-19 08:51  obj\x86\Debug\系统托盘程序示例.Properties.Resources.resources
     文件        1398  2012-11-19 08:51  Properties\AssemblyInfo.cs
     文件        2898  2012-11-19 08:51  Properties\Resources.Designer.cs
............此处省略3个文件信息

评论

共有 条评论