【例子介绍】C#实现窗体最小化至系统托盘,利用NotifyIcon控件实现
【相关图片】
【源码结构】
文件清单
└── 利用NotifyIcon控件实现窗体最小化至系统托盘
    ├── 利用NotifyIcon控件实现窗体最小化至系统托盘
    │   ├── bin
    │   │   └── Debug
    │   │       ├── 利用NotifyIcon控件实现窗体最小化至系统托盘.exe
    │   │       ├── 利用NotifyIcon控件实现窗体最小化至系统托盘.pdb
    │   │       └── 利用NotifyIcon控件实现窗体最小化至系统托盘.vshost.exe
    │   ├── Form1.cs
    │   ├── Form1.Designer.cs
    │   ├── Form1.resx
    │   ├── obj
    │   │   ├── Debug
    │   │   │   ├── Refactor
    │   │   │   ├── TempPE
    │   │   │   ├── 利用NotifyIcon控件实现窗体最小化至系统托盘.csproj.GenerateResource.Cache
    │   │   │   ├── 利用NotifyIcon控件实现窗体最小化至系统托盘.exe
    │   │   │   ├── 利用NotifyIcon控件实现窗体最小化至系统托盘.Form1.resources
    │   │   │   ├── 利用NotifyIcon控件实现窗体最小化至系统托盘.pdb
    │   │   │   └── 利用NotifyIcon控件实现窗体最小化至系统托盘.Properties.Resources.resources
    │   │   └── 利用NotifyIcon控件实现窗体最小化至系统托盘.csproj.FileList.txt
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   └── 利用NotifyIcon控件实现窗体最小化至系统托盘.csproj
    ├── 利用NotifyIcon控件实现窗体最小化至系统托盘.sln
    └── 利用NotifyIcon控件实现窗体最小化至系统托盘.suo
9 directories, 21 files

 
 

 
					
				
评论