在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → 198个经典C#—WinForm实例源码上

198个经典C#—WinForm实例源码上

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:32.03M
  • 下载次数:30
  • 浏览次数:82
  • 发布时间:2023-10-27
  • 实例类别:C#语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.rar
  • 所需积分:2
 相关标签: winform FORM ORM win for

实例介绍

【实例简介】198个经典C#—WinForm实例源码上
由于压缩包比较大,分成两个包上传,请见谅。这198个案例包括了C#winForm编程的方方面面,对于初学者有很好的借鉴作用。

【实例截图】

from clipboard

from clipboard

from clipboard

from clipboard

from clipboard

from clipboard

from clipboard【核心代码】

.
├── 198个经典C#—WinForm实例源码上
│   ├── 01-窗体技巧
│   │   ├── QQ窗体
│   │   │   ├── QQFrm
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Image
│   │   │   │   │   ├── 01.BMP
│   │   │   │   │   ├── 02.BMP
│   │   │   │   │   ├── 1.bmp
│   │   │   │   │   ├── 2.bmp
│   │   │   │   │   └── Close.bmp
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── QQFrm.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── QQFrm.exe
│   │   │   │   │       ├── QQFrm.pdb
│   │   │   │   │       ├── QQFrm.vshost.exe
│   │   │   │   │       └── QQFrm.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── QQFrm.Form1.resources
│   │   │   │           ├── QQFrm.Properties.Resources.resources
│   │   │   │           ├── QQFrm.csproj.FileListAbsolute.txt
│   │   │   │           ├── QQFrm.csproj.GenerateResource.Cache
│   │   │   │           ├── QQFrm.exe
│   │   │   │           ├── QQFrm.pdb
│   │   │   │           └── TempPE
│   │   │   │               └── Properties.Resources.Designer.cs.dll
│   │   │   ├── QQFrm.sln
│   │   │   └── QQFrm.suo
│   │   ├── 仿XP系统的任务栏菜单
│   │   │   ├── 仿XP系统的任务栏菜单
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Image
│   │   │   │   │   ├── 1.bmp
│   │   │   │   │   ├── 1.jpg
│   │   │   │   │   ├── 2.jpg
│   │   │   │   │   ├── 3.jpg
│   │   │   │   │   ├── 4.jpg
│   │   │   │   │   ├── 5.jpg
│   │   │   │   │   ├── 大背景.jpg
│   │   │   │   │   ├── 朝上按钮.jpg
│   │   │   │   │   └── 朝下按钮.jpg
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 仿XP系统的任务栏菜单.exe
│   │   │   │   │       ├── 仿XP系统的任务栏菜单.pdb
│   │   │   │   │       ├── 仿XP系统的任务栏菜单.vshost.exe
│   │   │   │   │       └── 仿XP系统的任务栏菜单.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Refactor
│   │   │   │   │       ├── TempPE
│   │   │   │   │       │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   │       ├── 仿XP系统的任务栏菜单.Form1.resources
│   │   │   │   │       ├── 仿XP系统的任务栏菜单.Properties.Resources.resources
│   │   │   │   │       ├── 仿XP系统的任务栏菜单.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 仿XP系统的任务栏菜单.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 仿XP系统的任务栏菜单.exe
│   │   │   │   │       └── 仿XP系统的任务栏菜单.pdb
│   │   │   │   └── 仿XP系统的任务栏菜单.csproj
│   │   │   ├── 仿XP系统的任务栏菜单.sln
│   │   │   └── 仿XP系统的任务栏菜单.suo
│   │   ├── 滚动字幕
│   │   │   ├── FollCaption
│   │   │   │   ├── FollCaption.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── FollCaption.exe
│   │   │   │   │       ├── FollCaption.pdb
│   │   │   │   │       ├── FollCaption.vshost.exe
│   │   │   │   │       └── FollCaption.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── FollCaption.Form1.resources
│   │   │   │           ├── FollCaption.Properties.Resources.resources
│   │   │   │           ├── FollCaption.csproj.FileListAbsolute.txt
│   │   │   │           ├── FollCaption.csproj.GenerateResource.Cache
│   │   │   │           ├── FollCaption.exe
│   │   │   │           ├── FollCaption.pdb
│   │   │   │           └── TempPE
│   │   │   ├── FollCaption.sln
│   │   │   └── FollCaption.suo
│   │   ├── 焦点变色
│   │   │   ├── FocusChangeColor
│   │   │   │   ├── FocusChangeColor.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── FocusChangeColor.exe
│   │   │   │   │       ├── FocusChangeColor.pdb
│   │   │   │   │       ├── FocusChangeColor.vshost.exe
│   │   │   │   │       └── FocusChangeColor.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── FocusChangeColor.Form1.resources
│   │   │   │           ├── FocusChangeColor.Properties.Resources.resources
│   │   │   │           ├── FocusChangeColor.csproj.FileListAbsolute.txt
│   │   │   │           ├── FocusChangeColor.csproj.GenerateResource.Cache
│   │   │   │           ├── FocusChangeColor.exe
│   │   │   │           ├── FocusChangeColor.pdb
│   │   │   │           └── TempPE
│   │   │   ├── FocusChangeColor.sln
│   │   │   └── FocusChangeColor.suo
│   │   ├── 窗体换肤
│   │   │   ├── BarterSkin
│   │   │   │   ├── BarterSkin.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Image
│   │   │   │   │   ├── sy1_01.jpg
│   │   │   │   │   ├── sy1_02.jpg
│   │   │   │   │   ├── sy1_03-1.jpg
│   │   │   │   │   ├── sy1_03.jpg
│   │   │   │   │   ├── sy1_04-1.jpg
│   │   │   │   │   ├── sy1_04.jpg
│   │   │   │   │   ├── sy1_05-1.jpg
│   │   │   │   │   ├── sy1_05.jpg
│   │   │   │   │   ├── sy2_01.jpg
│   │   │   │   │   ├── sy2_02.jpg
│   │   │   │   │   ├── sy2_03-1.jpg
│   │   │   │   │   ├── sy2_03.jpg
│   │   │   │   │   ├── sy2_04-1.jpg
│   │   │   │   │   ├── sy2_04.jpg
│   │   │   │   │   ├── sy2_05-1.jpg
│   │   │   │   │   ├── sy2_05.jpg
│   │   │   │   │   ├── sy3_01.jpg
│   │   │   │   │   ├── sy3_02.jpg
│   │   │   │   │   ├── sy3_03-1.jpg
│   │   │   │   │   ├── sy3_03.jpg
│   │   │   │   │   ├── sy3_04-1.jpg
│   │   │   │   │   ├── sy3_04.jpg
│   │   │   │   │   ├── sy3_05-1.jpg
│   │   │   │   │   └── sy3_05.jpg
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── BarterSkin.exe
│   │   │   │   │       ├── BarterSkin.pdb
│   │   │   │   │       ├── BarterSkin.vshost.exe
│   │   │   │   │       └── BarterSkin.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── BarterSkin.Form1.resources
│   │   │   │           ├── BarterSkin.Properties.Resources.resources
│   │   │   │           ├── BarterSkin.csproj.FileListAbsolute.txt
│   │   │   │           ├── BarterSkin.csproj.GenerateResource.Cache
│   │   │   │           ├── BarterSkin.exe
│   │   │   │           ├── BarterSkin.pdb
│   │   │   │           └── TempPE
│   │   │   │               └── Properties.Resources.Designer.cs.dll
│   │   │   ├── BarterSkin.sln
│   │   │   └── BarterSkin.suo
│   │   ├── 鼠标穿透
│   │   │   ├── CalendarPenetrate
│   │   │   │   ├── CalendarPenetrate.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Image
│   │   │   │   │   └── 明日图标(2).ico
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── CalendarPenetrate.exe
│   │   │   │   │       ├── CalendarPenetrate.pdb
│   │   │   │   │       ├── CalendarPenetrate.vshost.exe
│   │   │   │   │       └── CalendarPenetrate.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── CalendarPenetrate.Form1.resources
│   │   │   │           ├── CalendarPenetrate.Properties.Resources.resources
│   │   │   │           ├── CalendarPenetrate.csproj.FileListAbsolute.txt
│   │   │   │           ├── CalendarPenetrate.csproj.GenerateResource.Cache
│   │   │   │           ├── CalendarPenetrate.exe
│   │   │   │           ├── CalendarPenetrate.pdb
│   │   │   │           └── TempPE
│   │   │   ├── CalendarPenetrate.sln
│   │   │   └── CalendarPenetrate.suo
│   │   ├── 无边框窗体
│   │   │   ├── Noframe
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Image
│   │   │   │   │   ├── 关闭变色.jpg
│   │   │   │   │   ├── 关闭按钮.jpg
│   │   │   │   │   ├── 最大化变色.jpg
│   │   │   │   │   ├── 最大化按钮.jpg
│   │   │   │   │   ├── 最小化变色.jpg
│   │   │   │   │   ├── 最小化按钮.jpg
│   │   │   │   │   ├── 登录界面下面.PNG
│   │   │   │   │   └── 登录界面标题.PNG
│   │   │   │   ├── Noframe.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Noframe.exe
│   │   │   │   │       ├── Noframe.pdb
│   │   │   │   │       ├── Noframe.vshost.exe
│   │   │   │   │       └── Noframe.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── Noframe.Form1.resources
│   │   │   │           ├── Noframe.Properties.Resources.resources
│   │   │   │           ├── Noframe.csproj.FileListAbsolute.txt
│   │   │   │           ├── Noframe.csproj.GenerateResource.Cache
│   │   │   │           ├── Noframe.exe
│   │   │   │           ├── Noframe.pdb
│   │   │   │           └── TempPE
│   │   │   ├── Noframe.sln
│   │   │   └── Noframe.suo
│   │   ├── 自定义屏保
│   │   │   ├── 自定义屏保
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 自定义屏保.exe
│   │   │   │   │       ├── 自定义屏保.pdb
│   │   │   │   │       ├── 自定义屏保.vshost.exe
│   │   │   │   │       └── 自定义屏保.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── TempPE
│   │   │   │   │       ├── 自定义屏保.Form1.resources
│   │   │   │   │       ├── 自定义屏保.Properties.Resources.resources
│   │   │   │   │       ├── 自定义屏保.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 自定义屏保.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 自定义屏保.exe
│   │   │   │   │       └── 自定义屏保.pdb
│   │   │   │   └── 自定义屏保.csproj
│   │   │   ├── 自定义屏保.sln
│   │   │   └── 自定义屏保.suo
│   │   ├── 隐藏工具箱
│   │   │   ├── HideKit
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── HideKit.csproj
│   │   │   │   ├── Image
│   │   │   │   │   ├── 01.jpg
│   │   │   │   │   ├── 02.jpg
│   │   │   │   │   ├── 03.jpg
│   │   │   │   │   └── 04.jpg
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── HideKit.exe
│   │   │   │   │       ├── HideKit.pdb
│   │   │   │   │       ├── HideKit.vshost.exe
│   │   │   │   │       └── HideKit.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── HideKit.Form1.resources
│   │   │   │           ├── HideKit.Properties.Resources.resources
│   │   │   │           ├── HideKit.csproj.FileListAbsolute.txt
│   │   │   │           ├── HideKit.csproj.GenerateResource.Cache
│   │   │   │           ├── HideKit.exe
│   │   │   │           ├── HideKit.pdb
│   │   │   │           └── TempPE
│   │   │   ├── HideKit.sln
│   │   │   └── HideKit.suo
│   │   ├── 获取文件目录
│   │   │   ├── FileCatalog
│   │   │   │   ├── FileCatalog.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── FileCatalog.exe
│   │   │   │   │       ├── FileCatalog.pdb
│   │   │   │   │       ├── FileCatalog.vshost.exe
│   │   │   │   │       └── FileCatalog.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── FileCatalog.Form1.resources
│   │   │   │           ├── FileCatalog.Properties.Resources.resources
│   │   │   │           ├── FileCatalog.csproj.FileListAbsolute.txt
│   │   │   │           ├── FileCatalog.csproj.GenerateResource.Cache
│   │   │   │           ├── FileCatalog.exe
│   │   │   │           ├── FileCatalog.pdb
│   │   │   │           └── TempPE
│   │   │   ├── FileCatalog.sln
│   │   │   └── FileCatalog.suo
│   │   ├── 获取文件类型
│   │   │   ├── FileStyle
│   │   │   │   ├── FileStyle.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── FileStyle.exe
│   │   │   │   │       ├── FileStyle.pdb
│   │   │   │   │       ├── FileStyle.vshost.exe
│   │   │   │   │       └── FileStyle.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── FileStyle.Form1.resources
│   │   │   │           ├── FileStyle.Properties.Resources.resources
│   │   │   │           ├── FileStyle.csproj.FileListAbsolute.txt
│   │   │   │           ├── FileStyle.csproj.GenerateResource.Cache
│   │   │   │           ├── FileStyle.exe
│   │   │   │           ├── FileStyle.pdb
│   │   │   │           └── TempPE
│   │   │   ├── FileStyle.sln
│   │   │   └── FileStyle.suo
│   │   ├── 限制窗体大小
│   │   │   ├── RestrictSize
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── RestrictSize.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── RestrictSize.exe
│   │   │   │   │       ├── RestrictSize.pdb
│   │   │   │   │       ├── RestrictSize.vshost.exe
│   │   │   │   │       └── RestrictSize.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── RestrictSize.Form1.resources
│   │   │   │           ├── RestrictSize.Properties.Resources.resources
│   │   │   │           ├── RestrictSize.csproj.FileListAbsolute.txt
│   │   │   │           ├── RestrictSize.csproj.GenerateResource.Cache
│   │   │   │           ├── RestrictSize.exe
│   │   │   │           ├── RestrictSize.pdb
│   │   │   │           └── TempPE
│   │   │   ├── RestrictSize.sln
│   │   │   └── RestrictSize.suo
│   │   ├── 鼠标穿透窗体
│   │   │   ├── 鼠标穿透窗体
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Image
│   │   │   │   │   └── 明日图标(2).ico
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 鼠标穿透窗体.exe
│   │   │   │   │       ├── 鼠标穿透窗体.pdb
│   │   │   │   │       ├── 鼠标穿透窗体.vshost.exe
│   │   │   │   │       └── 鼠标穿透窗体.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Refactor
│   │   │   │   │       ├── TempPE
│   │   │   │   │       ├── 鼠标穿透窗体.Form1.resources
│   │   │   │   │       ├── 鼠标穿透窗体.Properties.Resources.resources
│   │   │   │   │       ├── 鼠标穿透窗体.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 鼠标穿透窗体.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 鼠标穿透窗体.exe
│   │   │   │   │       └── 鼠标穿透窗体.pdb
│   │   │   │   └── 鼠标穿透窗体.csproj
│   │   │   ├── 鼠标穿透窗体.sln
│   │   │   └── 鼠标穿透窗体.suo
│   │   ├── 磁性窗体的设计
│   │   │   ├── 磁性窗体
│   │   │   │   ├── magnetism
│   │   │   │   │   ├── FrmClass.cs
│   │   │   │   │   ├── Frm_Libretto.Designer.cs
│   │   │   │   │   ├── Frm_Libretto.cs
│   │   │   │   │   ├── Frm_Libretto.resx
│   │   │   │   │   ├── Frm_ListBox.cs
│   │   │   │   │   ├── Frm_ListBox.designer.cs
│   │   │   │   │   ├── Frm_ListBox.resx
│   │   │   │   │   ├── Frm_Play.Designer.cs
│   │   │   │   │   ├── Frm_Play.cs
│   │   │   │   │   ├── Frm_Play.resx
│   │   │   │   │   ├── Image
│   │   │   │   │   │   ├── 1.bmp
│   │   │   │   │   │   ├── 2.bmp
│   │   │   │   │   │   ├── 3.bmp
│   │   │   │   │   │   ├── 4.bmp
│   │   │   │   │   │   ├── 5.bmp
│   │   │   │   │   │   └── Close.bmp
│   │   │   │   │   ├── Program.cs
│   │   │   │   │   ├── Properties
│   │   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   │   ├── Resources.resx
│   │   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   │   └── Settings.settings
│   │   │   │   │   ├── bin
│   │   │   │   │   │   └── Debug
│   │   │   │   │   │       ├── magnetism.exe
│   │   │   │   │   │       ├── magnetism.pdb
│   │   │   │   │   │       ├── magnetism.vshost.exe
│   │   │   │   │   │       └── magnetism.vshost.exe.manifest
│   │   │   │   │   ├── magnetism.csproj
│   │   │   │   │   └── obj
│   │   │   │   │       └── Debug
│   │   │   │   │           ├── TempPE
│   │   │   │   │           │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   │           ├── magnetism.Frm_Libretto.resources
│   │   │   │   │           ├── magnetism.Frm_ListBox.resources
│   │   │   │   │           ├── magnetism.Frm_Play.resources
│   │   │   │   │           ├── magnetism.Properties.Resources.resources
│   │   │   │   │           ├── magnetism.csproj.FileListAbsolute.txt
│   │   │   │   │           ├── magnetism.csproj.GenerateResource.Cache
│   │   │   │   │           ├── magnetism.exe
│   │   │   │   │           └── magnetism.pdb
│   │   │   │   ├── magnetism.sln
│   │   │   │   └── magnetism.suo
│   │   │   └── 磁性窗体的设计
│   │   │       ├── 磁性窗体的设计
│   │   │       │   ├── FrmClass.cs
│   │   │       │   ├── Frm_Libretto.Designer.cs
│   │   │       │   ├── Frm_Libretto.cs
│   │   │       │   ├── Frm_Libretto.resx
│   │   │       │   ├── Frm_ListBox.Designer.cs
│   │   │       │   ├── Frm_ListBox.cs
│   │   │       │   ├── Frm_ListBox.resx
│   │   │       │   ├── Frm_Play.Designer.cs
│   │   │       │   ├── Frm_Play.cs
│   │   │       │   ├── Frm_Play.resx
│   │   │       │   ├── Image
│   │   │       │   │   ├── 1.bmp
│   │   │       │   │   ├── 2.bmp
│   │   │       │   │   ├── 3.bmp
│   │   │       │   │   ├── 4.bmp
│   │   │       │   │   ├── 5.bmp
│   │   │       │   │   └── Close.bmp
│   │   │       │   ├── Program.cs
│   │   │       │   ├── Properties
│   │   │       │   │   ├── AssemblyInfo.cs
│   │   │       │   │   ├── Resources.Designer.cs
│   │   │       │   │   ├── Resources.resx
│   │   │       │   │   ├── Settings.Designer.cs
│   │   │       │   │   └── Settings.settings
│   │   │       │   ├── bin
│   │   │       │   │   └── Debug
│   │   │       │   │       ├── 磁性窗体的设计.exe
│   │   │       │   │       ├── 磁性窗体的设计.pdb
│   │   │       │   │       ├── 磁性窗体的设计.vshost.exe
│   │   │       │   │       └── 磁性窗体的设计.vshost.exe.manifest
│   │   │       │   ├── obj
│   │   │       │   │   └── Debug
│   │   │       │   │       ├── Refactor
│   │   │       │   │       ├── TempPE
│   │   │       │   │       │   └── Properties.Resources.Designer.cs.dll
│   │   │       │   │       ├── 磁性窗体的设计.Frm_Libretto.resources
│   │   │       │   │       ├── 磁性窗体的设计.Frm_ListBox.resources
│   │   │       │   │       ├── 磁性窗体的设计.Frm_Play.resources
│   │   │       │   │       ├── 磁性窗体的设计.Properties.Resources.resources
│   │   │       │   │       ├── 磁性窗体的设计.csproj.FileListAbsolute.txt
│   │   │       │   │       ├── 磁性窗体的设计.csproj.GenerateResource.Cache
│   │   │       │   │       ├── 磁性窗体的设计.exe
│   │   │       │   │       └── 磁性窗体的设计.pdb
│   │   │       │   └── 磁性窗体的设计.csproj
│   │   │       ├── 磁性窗体的设计.sln
│   │   │       └── 磁性窗体的设计.suo
│   │   ├── 窗体的浮动及隐藏
│   │   │   ├── 窗体的浮动及隐藏
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Image
│   │   │   │   │   ├── 1.bmp
│   │   │   │   │   ├── 2.bmp
│   │   │   │   │   └── Close.bmp
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 窗体的浮动及隐藏.exe
│   │   │   │   │       ├── 窗体的浮动及隐藏.pdb
│   │   │   │   │       ├── 窗体的浮动及隐藏.vshost.exe
│   │   │   │   │       └── 窗体的浮动及隐藏.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Refactor
│   │   │   │   │       ├── TempPE
│   │   │   │   │       │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   │       ├── 窗体的浮动及隐藏.Form1.resources
│   │   │   │   │       ├── 窗体的浮动及隐藏.Properties.Resources.resources
│   │   │   │   │       ├── 窗体的浮动及隐藏.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 窗体的浮动及隐藏.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 窗体的浮动及隐藏.exe
│   │   │   │   │       └── 窗体的浮动及隐藏.pdb
│   │   │   │   └── 窗体的浮动及隐藏.csproj
│   │   │   ├── 窗体的浮动及隐藏.sln
│   │   │   └── 窗体的浮动及隐藏.suo
│   │   ├── 向窗体中拖放图片并显示
│   │   │   ├── 向窗体中拖放图片并显示
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 向窗体中拖放图片并显示.exe
│   │   │   │   │       ├── 向窗体中拖放图片并显示.pdb
│   │   │   │   │       ├── 向窗体中拖放图片并显示.vshost.exe
│   │   │   │   │       └── 向窗体中拖放图片并显示.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Refactor
│   │   │   │   │       ├── TempPE
│   │   │   │   │       ├── 向窗体中拖放图片并显示.Form1.resources
│   │   │   │   │       ├── 向窗体中拖放图片并显示.Properties.Resources.resources
│   │   │   │   │       ├── 向窗体中拖放图片并显示.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 向窗体中拖放图片并显示.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 向窗体中拖放图片并显示.exe
│   │   │   │   │       └── 向窗体中拖放图片并显示.pdb
│   │   │   │   └── 向窗体中拖放图片并显示.csproj
│   │   │   ├── 向窗体中拖放图片并显示.sln
│   │   │   └── 向窗体中拖放图片并显示.suo
│   │   ├── 手动改变自制窗体的大小
│   │   │   ├── 手动改变自制窗体的大小
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 手动改变自制窗体的大小.exe
│   │   │   │   │       ├── 手动改变自制窗体的大小.pdb
│   │   │   │   │       ├── 手动改变自制窗体的大小.vshost.exe
│   │   │   │   │       └── 手动改变自制窗体的大小.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── TempPE
│   │   │   │   │       ├── 手动改变自制窗体的大小.Form1.resources
│   │   │   │   │       ├── 手动改变自制窗体的大小.Properties.Resources.resources
│   │   │   │   │       ├── 手动改变自制窗体的大小.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 手动改变自制窗体的大小.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 手动改变自制窗体的大小.exe
│   │   │   │   │       └── 手动改变自制窗体的大小.pdb
│   │   │   │   └── 手动改变自制窗体的大小.csproj
│   │   │   ├── 手动改变自制窗体的大小.sln
│   │   │   └── 手动改变自制窗体的大小.suo
│   │   ├── 用树型列表动态显示菜单
│   │   │   ├── sl
│   │   │   │   └── 用树型列表动态显示菜单
│   │   │   │       ├── 用树型列表动态显示菜单
│   │   │   │       │   ├── 1.bmp
│   │   │   │       │   ├── Form1.Designer.cs
│   │   │   │       │   ├── Form1.cs
│   │   │   │       │   ├── Form1.resx
│   │   │   │       │   ├── Form2.Designer.cs
│   │   │   │       │   ├── Form2.cs
│   │   │   │       │   ├── Form2.resx
│   │   │   │       │   ├── Program.cs
│   │   │   │       │   ├── Properties
│   │   │   │       │   │   ├── AssemblyInfo.cs
│   │   │   │       │   │   ├── Resources.Designer.cs
│   │   │   │       │   │   ├── Resources.resx
│   │   │   │       │   │   ├── Settings.Designer.cs
│   │   │   │       │   │   └── Settings.settings
│   │   │   │       │   ├── bin
│   │   │   │       │   │   └── Debug
│   │   │   │       │   │       ├── 用树型列表动态显示菜单.exe
│   │   │   │       │   │       ├── 用树型列表动态显示菜单.pdb
│   │   │   │       │   │       ├── 用树型列表动态显示菜单.vshost.exe
│   │   │   │       │   │       └── 用树型列表动态显示菜单.vshost.exe.manifest
│   │   │   │       │   ├── obj
│   │   │   │       │   │   └── Debug
│   │   │   │       │   │       ├── Refactor
│   │   │   │       │   │       ├── TempPE
│   │   │   │       │   │       │   └── Properties.Resources.Designer.cs.dll
│   │   │   │       │   │       ├── 用树型列表动态显示菜单.Form1.resources
│   │   │   │       │   │       ├── 用树型列表动态显示菜单.Form2.resources
│   │   │   │       │   │       ├── 用树型列表动态显示菜单.Properties.Resources.resources
│   │   │   │       │   │       ├── 用树型列表动态显示菜单.csproj.FileListAbsolute.txt
│   │   │   │       │   │       ├── 用树型列表动态显示菜单.csproj.GenerateResource.Cache
│   │   │   │       │   │       ├── 用树型列表动态显示菜单.exe
│   │   │   │       │   │       └── 用树型列表动态显示菜单.pdb
│   │   │   │       │   └── 用树型列表动态显示菜单.csproj
│   │   │   │       ├── 用树型列表动态显示菜单.sln
│   │   │   │       └── 用树型列表动态显示菜单.suo
│   │   │   └── 用树型列表动态显示菜单
│   │   │       └── 01
│   │   │           └── 用树型列表动态显示菜单
│   │   │               ├── 用树型列表动态显示菜单
│   │   │               │   ├── 1.bmp
│   │   │               │   ├── Form1.Designer.cs
│   │   │               │   ├── Form1.cs
│   │   │               │   ├── Form1.resx
│   │   │               │   ├── Form2.Designer.cs
│   │   │               │   ├── Form2.cs
│   │   │               │   ├── Form2.resx
│   │   │               │   ├── Frm_Logon.Designer.cs
│   │   │               │   ├── Frm_Logon.cs
│   │   │               │   ├── Frm_Logon.resx
│   │   │               │   ├── Program.cs
│   │   │               │   ├── Properties
│   │   │               │   │   ├── AssemblyInfo.cs
│   │   │               │   │   ├── Resources.Designer.cs
│   │   │               │   │   ├── Resources.resx
│   │   │               │   │   ├── Settings.Designer.cs
│   │   │               │   │   └── Settings.settings
│   │   │               │   ├── bin
│   │   │               │   │   └── Debug
│   │   │               │   │       ├── 用树型列表动态显示菜单.exe
│   │   │               │   │       ├── 用树型列表动态显示菜单.pdb
│   │   │               │   │       ├── 用树型列表动态显示菜单.vshost.exe
│   │   │               │   │       └── 用树型列表动态显示菜单.vshost.exe.manifest
│   │   │               │   ├── obj
│   │   │               │   │   └── Debug
│   │   │               │   │       ├── Refactor
│   │   │               │   │       ├── TempPE
│   │   │               │   │       │   └── Properties.Resources.Designer.cs.dll
│   │   │               │   │       ├── 用树型列表动态显示菜单.Form1.resources
│   │   │               │   │       ├── 用树型列表动态显示菜单.Form2.resources
│   │   │               │   │       ├── 用树型列表动态显示菜单.Frm_Logon.resources
│   │   │               │   │       ├── 用树型列表动态显示菜单.Properties.Resources.resources
│   │   │               │   │       ├── 用树型列表动态显示菜单.csproj.FileListAbsolute.txt
│   │   │               │   │       ├── 用树型列表动态显示菜单.csproj.GenerateResource.Cache
│   │   │               │   │       ├── 用树型列表动态显示菜单.exe
│   │   │               │   │       └── 用树型列表动态显示菜单.pdb
│   │   │               │   └── 用树型列表动态显示菜单.csproj
│   │   │               ├── 用树型列表动态显示菜单.sln
│   │   │               └── 用树型列表动态显示菜单.suo
│   │   └── 自定义窗体的最大化、最小化和关闭按钮
│   │       ├── 自定义窗体的最大化、最小化和关闭按钮
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Image
│   │       │   │   ├── 关闭变色.jpg
│   │       │   │   ├── 关闭按钮.jpg
│   │       │   │   ├── 最大化变色.jpg
│   │       │   │   ├── 最大化按钮.jpg
│   │       │   │   ├── 最小化变色.jpg
│   │       │   │   ├── 最小化按钮.jpg
│   │       │   │   ├── 登录界面下面.PNG
│   │       │   │   └── 登录界面标题.PNG
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   ├── obj
│   │       │   │   └── Debug
│   │       │   │       ├── TempPE
│   │       │   │       │   └── Properties.Resources.Designer.cs.dll
│   │       │   │       ├── 自定义窗体的最大化_最小化和关闭按钮.Form1.resources
│   │       │   │       ├── 自定义窗体的最大化_最小化和关闭按钮.Properties.Resources.resources
│   │       │   │       ├── 自定义窗体的最大化、最小化和关闭按钮.csproj.FileListAbsolute.txt
│   │       │   │       ├── 自定义窗体的最大化、最小化和关闭按钮.csproj.GenerateResource.Cache
│   │       │   │       ├── 自定义窗体的最大化、最小化和关闭按钮.exe
│   │       │   │       └── 自定义窗体的最大化、最小化和关闭按钮.pdb
│   │       │   └── 自定义窗体的最大化、最小化和关闭按钮.csproj
│   │       ├── 自定义窗体的最大化、最小化和关闭按钮.sln
│   │       └── 自定义窗体的最大化、最小化和关闭按钮.suo
│   ├── 02-控件操作
│   │   ├── ClarityControl
│   │   │   ├── ClarityControl
│   │   │   │   ├── ClarityControl.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── T_Control.Designer.cs
│   │   │   │   ├── T_Control.cs
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── ClarityControl.exe
│   │   │   │   │       ├── ClarityControl.pdb
│   │   │   │   │       ├── ClarityControl.vshost.exe
│   │   │   │   │       └── ClarityControl.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── ClarityControl.Form1.resources
│   │   │   │           ├── ClarityControl.Properties.Resources.resources
│   │   │   │           ├── ClarityControl.csproj.FileListAbsolute.txt
│   │   │   │           ├── ClarityControl.csproj.GenerateResource.Cache
│   │   │   │           ├── ClarityControl.exe
│   │   │   │           ├── ClarityControl.pdb
│   │   │   │           └── TempPE
│   │   │   ├── ClarityControl.sln
│   │   │   └── ClarityControl.suo
│   │   ├── Control阴影
│   │   │   ├── ShadeColorControl
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── ShadeColorControl.csproj
│   │   │   │   ├── T_Control.Designer.cs
│   │   │   │   ├── T_Control.cs
│   │   │   │   ├── T_Control.resx
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── ShadeColorControl.exe
│   │   │   │   │       ├── ShadeColorControl.pdb
│   │   │   │   │       ├── ShadeColorControl.vshost.exe
│   │   │   │   │       └── ShadeColorControl.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── ClarityControl.T_Control.resources
│   │   │   │           ├── ShadeColorControl.Form1.resources
│   │   │   │           ├── ShadeColorControl.Properties.Resources.resources
│   │   │   │           ├── ShadeColorControl.csproj.FileListAbsolute.txt
│   │   │   │           ├── ShadeColorControl.csproj.GenerateResource.Cache
│   │   │   │           ├── ShadeColorControl.exe
│   │   │   │           ├── ShadeColorControl.pdb
│   │   │   │           └── TempPE
│   │   │   ├── ShadeColorControl.sln
│   │   │   └── ShadeColorControl.suo
│   │   ├── DataGridViewToTreeView
│   │   │   ├── DataGridViewToTreeView
│   │   │   │   ├── DataGridViewToTreeView.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── DataGridViewToTreeView.exe
│   │   │   │   │       ├── DataGridViewToTreeView.pdb
│   │   │   │   │       ├── DataGridViewToTreeView.vshost.exe
│   │   │   │   │       └── DataGridViewToTreeView.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── DataGridViewToTreeView.Form1.resources
│   │   │   │           ├── DataGridViewToTreeView.Properties.Resources.resources
│   │   │   │           ├── DataGridViewToTreeView.csproj.FileListAbsolute.txt
│   │   │   │           ├── DataGridViewToTreeView.csproj.GenerateResource.Cache
│   │   │   │           ├── DataGridViewToTreeView.exe
│   │   │   │           ├── DataGridViewToTreeView.pdb
│   │   │   │           └── TempPE
│   │   │   ├── DataGridViewToTreeView.sln
│   │   │   └── DataGridViewToTreeView.suo
│   │   ├── DataGridView操作
│   │   │   ├── DataGridViewOperate
│   │   │   │   ├── DataGridViewOperate.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── DataGridViewOperate.exe
│   │   │   │   │       ├── DataGridViewOperate.pdb
│   │   │   │   │       ├── DataGridViewOperate.vshost.exe
│   │   │   │   │       └── DataGridViewOperate.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── DataGridViewOperate.Form1.resources
│   │   │   │           ├── DataGridViewOperate.Properties.Resources.resources
│   │   │   │           ├── DataGridViewOperate.csproj.FileListAbsolute.txt
│   │   │   │           ├── DataGridViewOperate.csproj.GenerateResource.Cache
│   │   │   │           ├── DataGridViewOperate.exe
│   │   │   │           ├── DataGridViewOperate.pdb
│   │   │   │           └── TempPE
│   │   │   ├── DataGridViewOperate.sln
│   │   │   └── DataGridViewOperate.suo
│   │   ├── DisplayRowCount
│   │   │   ├── DisplayRowCount
│   │   │   │   ├── DisplayRowCount.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── DisplayRowCount.exe
│   │   │   │   │       ├── DisplayRowCount.pdb
│   │   │   │   │       ├── DisplayRowCount.vshost.exe
│   │   │   │   │       └── DisplayRowCount.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── DisplayRowCount.Form1.resources
│   │   │   │           ├── DisplayRowCount.Properties.Resources.resources
│   │   │   │           ├── DisplayRowCount.csproj.FileListAbsolute.txt
│   │   │   │           ├── DisplayRowCount.csproj.GenerateResource.Cache
│   │   │   │           ├── DisplayRowCount.exe
│   │   │   │           ├── DisplayRowCount.pdb
│   │   │   │           └── TempPE
│   │   │   ├── DisplayRowCount.sln
│   │   │   └── DisplayRowCount.suo
│   │   ├── DropDownForm
│   │   │   ├── DropDownForm
│   │   │   │   ├── DropDownForm.csproj
│   │   │   │   ├── GroundForm.Designer.cs
│   │   │   │   ├── GroundForm.cs
│   │   │   │   ├── GroundForm.resx
│   │   │   │   ├── MainForm.Designer.cs
│   │   │   │   ├── MainForm.cs
│   │   │   │   ├── MainForm.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── Resources
│   │   │   │   │   ├── 1.bmp
│   │   │   │   │   ├── Close1.bmp
│   │   │   │   │   └── Close2.bmp
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── DropDownForm.exe
│   │   │   │   │       ├── DropDownForm.pdb
│   │   │   │   │       ├── DropDownForm.vshost.exe
│   │   │   │   │       └── DropDownForm.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── DropDownForm.DropDownForm.resources
│   │   │   │           ├── DropDownForm.GroundForm.resources
│   │   │   │           ├── DropDownForm.Properties.Resources.resources
│   │   │   │           ├── DropDownForm.csproj.FileListAbsolute.txt
│   │   │   │           ├── DropDownForm.csproj.GenerateResource.Cache
│   │   │   │           ├── DropDownForm.exe
│   │   │   │           ├── DropDownForm.pdb
│   │   │   │           ├── Refactor
│   │   │   │           └── TempPE
│   │   │   │               └── Properties.Resources.Designer.cs.dll
│   │   │   ├── DropDownForm.sln
│   │   │   └── DropDownForm.suo
│   │   ├── EnglishTextBox
│   │   │   ├── EnglishTextBox
│   │   │   │   ├── E_TextBox.Designer.cs
│   │   │   │   ├── E_TextBox.cs
│   │   │   │   ├── E_TextBox.resx
│   │   │   │   ├── EnglishTextBox.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── EnglishTextBox.exe
│   │   │   │   │       ├── EnglishTextBox.pdb
│   │   │   │   │       ├── EnglishTextBox.vshost.exe
│   │   │   │   │       └── EnglishTextBox.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── EnglishTextBox.E_TextBox.resources
│   │   │   │           ├── EnglishTextBox.Form1.resources
│   │   │   │           ├── EnglishTextBox.Properties.Resources.resources
│   │   │   │           ├── EnglishTextBox.csproj.FileListAbsolute.txt
│   │   │   │           ├── EnglishTextBox.csproj.GenerateResource.Cache
│   │   │   │           ├── EnglishTextBox.exe
│   │   │   │           ├── EnglishTextBox.pdb
│   │   │   │           └── TempPE
│   │   │   ├── EnglishTextBox.sln
│   │   │   └── EnglishTextBox.suo
│   │   ├── FileBatchCopy
│   │   │   ├── FileBatchCopy
│   │   │   │   ├── FileBatchCopy.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── FileBatchCopy.exe
│   │   │   │   │       ├── FileBatchCopy.pdb
│   │   │   │   │       ├── FileBatchCopy.vshost.exe
│   │   │   │   │       └── FileBatchCopy.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── FileBatchCopy.Form1.resources
│   │   │   │           ├── FileBatchCopy.Properties.Resources.resources
│   │   │   │           ├── FileBatchCopy.csproj.FileListAbsolute.txt
│   │   │   │           ├── FileBatchCopy.csproj.GenerateResource.Cache
│   │   │   │           ├── FileBatchCopy.exe
│   │   │   │           ├── FileBatchCopy.pdb
│   │   │   │           └── TempPE
│   │   │   ├── FileBatchCopy.sln
│   │   │   └── FileBatchCopy.suo
│   │   ├── GetClipBoardPicture
│   │   │   ├── GetClipBoardPicture
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── GetClipBoardPicture.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── GetClipBoardPicture.exe
│   │   │   │   │       ├── GetClipBoardPicture.pdb
│   │   │   │   │       └── GetClipBoardPicture.vshost.exe
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── GetClipBoardPicture.Form1.resources
│   │   │   │           ├── GetClipBoardPicture.Properties.Resources.resources
│   │   │   │           ├── GetClipBoardPicture.csproj.FileListAbsolute.txt
│   │   │   │           ├── GetClipBoardPicture.csproj.GenerateResource.Cache
│   │   │   │           ├── GetClipBoardPicture.exe
│   │   │   │           ├── GetClipBoardPicture.pdb
│   │   │   │           ├── Refactor
│   │   │   │           └── TempPE
│   │   │   │               └── Properties.Resources.Designer.cs.dll
│   │   │   ├── GetClipBoardPicture.sln
│   │   │   └── GetClipBoardPicture.suo
│   │   ├── PlanText
│   │   │   ├── PlanText
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── PlanText.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── ProgressBarText.Designer.cs
│   │   │   │   ├── ProgressBarText.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── PlanText.exe
│   │   │   │   │       ├── PlanText.pdb
│   │   │   │   │       ├── PlanText.vshost.exe
│   │   │   │   │       └── PlanText.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── PlanText.Form1.resources
│   │   │   │           ├── PlanText.Properties.Resources.resources
│   │   │   │           ├── PlanText.csproj.FileListAbsolute.txt
│   │   │   │           ├── PlanText.csproj.GenerateResource.Cache
│   │   │   │           ├── PlanText.exe
│   │   │   │           ├── PlanText.pdb
│   │   │   │           └── TempPE
│   │   │   ├── PlanText.sln
│   │   │   └── PlanText.suo
│   │   ├── Popup窗口提醒
│   │   │   ├── Popup窗口提醒
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Frm_Popup.Designer.cs
│   │   │   │   ├── Frm_Popup.cs
│   │   │   │   ├── Frm_Popup.resx
│   │   │   │   ├── Image
│   │   │   │   │   ├── 1.bmp
│   │   │   │   │   ├── Close1.bmp
│   │   │   │   │   └── Close2.bmp
│   │   │   │   ├── Popup窗口提醒.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Close1.bmp
│   │   │   │   │       ├── Close2.bmp
│   │   │   │   │       ├── Popup窗口提醒.exe
│   │   │   │   │       ├── Popup窗口提醒.pdb
│   │   │   │   │       ├── Popup窗口提醒.vshost.exe
│   │   │   │   │       └── Popup窗口提醒.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── Popup.Controls.Frm_Popup.resources
│   │   │   │           ├── Popup窗口提醒.Form1.resources
│   │   │   │           ├── Popup窗口提醒.Properties.Resources.resources
│   │   │   │           ├── Popup窗口提醒.csproj.FileListAbsolute.txt
│   │   │   │           ├── Popup窗口提醒.csproj.GenerateResource.Cache
│   │   │   │           ├── Popup窗口提醒.exe
│   │   │   │           ├── Popup窗口提醒.pdb
│   │   │   │           └── TempPE
│   │   │   │               └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Popup窗口提醒.sln
│   │   │   └── Popup窗口提醒.suo
│   │   ├── RestrictDigit
│   │   │   ├── RestrictDigit
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── R_TextBox.Designer.cs
│   │   │   │   ├── R_TextBox.cs
│   │   │   │   ├── R_TextBox.resx
│   │   │   │   ├── RestrictDigit.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── RestrictDigit.exe
│   │   │   │   │       ├── RestrictDigit.pdb
│   │   │   │   │       ├── RestrictDigit.vshost.exe
│   │   │   │   │       └── RestrictDigit.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── RestrictDigit.Form1.resources
│   │   │   │           ├── RestrictDigit.Properties.Resources.resources
│   │   │   │           ├── RestrictDigit.R_TextBox.resources
│   │   │   │           ├── RestrictDigit.csproj.FileListAbsolute.txt
│   │   │   │           ├── RestrictDigit.csproj.GenerateResource.Cache
│   │   │   │           ├── RestrictDigit.exe
│   │   │   │           ├── RestrictDigit.pdb
│   │   │   │           └── TempPE
│   │   │   ├── RestrictDigit.sln
│   │   │   └── RestrictDigit.suo
│   │   ├── Vista风格的日历
│   │   │   ├── Vista风格的日 历
│   │   │   │   ├── Vista风格的日历
│   │   │   │   │   ├── DateTimeControl.Designer.cs
│   │   │   │   │   ├── DateTimeControl.cs
│   │   │   │   │   ├── DateTimeControl.resx
│   │   │   │   │   ├── Form1.Designer.cs
│   │   │   │   │   ├── Form1.cs
│   │   │   │   │   ├── Form1.resx
│   │   │   │   │   ├── Image
│   │   │   │   │   │   ├── backdrop.png
│   │   │   │   │   │   ├── backdrop1.png
│   │   │   │   │   │   └── 明日图标.ico
│   │   │   │   │   ├── Program.cs
│   │   │   │   │   ├── Properties
│   │   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   │   ├── Resources.resx
│   │   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   │   └── Settings.settings
│   │   │   │   │   ├── Vista风格的日历.csproj
│   │   │   │   │   ├── bin
│   │   │   │   │   │   └── Debug
│   │   │   │   │   │       ├── Vista风格的日历.exe
│   │   │   │   │   │       ├── Vista风格的日历.pdb
│   │   │   │   │   │       ├── Vista风格的日历.vshost.exe
│   │   │   │   │   │       └── Vista风格的日历.vshost.exe.manifest
│   │   │   │   │   └── obj
│   │   │   │   │       └── Debug
│   │   │   │   │           ├── TempPE
│   │   │   │   │           │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   │           ├── Vista风格的日历.DateTimeControl.resources
│   │   │   │   │           ├── Vista风格的日历.Form1.resources
│   │   │   │   │           ├── Vista风格的日历.Properties.Resources.resources
│   │   │   │   │           ├── Vista风格的日历.csproj.FileListAbsolute.txt
│   │   │   │   │           ├── Vista风格的日历.csproj.GenerateResource.Cache
│   │   │   │   │           ├── Vista风格的日历.exe
│   │   │   │   │           └── Vista风格的日历.pdb
│   │   │   │   ├── Vista风格的日历.sln
│   │   │   │   └── Vista风格的日历.suo
│   │   │   └── Vista风格的日历
│   │   │       ├── Vista风格的日历
│   │   │       │   ├── DateTimeControl.Designer.cs
│   │   │       │   ├── DateTimeControl.cs
│   │   │       │   ├── DateTimeControl.resx
│   │   │       │   ├── Form1.Designer.cs
│   │   │       │   ├── Form1.cs
│   │   │       │   ├── Form1.resx
│   │   │       │   ├── Frm_Data.Designer.cs
│   │   │       │   ├── Frm_Data.cs
│   │   │       │   ├── Frm_Data.resx
│   │   │       │   ├── Image
│   │   │       │   │   ├── backdrop.png
│   │   │       │   │   ├── backdrop1.png
│   │   │       │   │   └── 明日图标.ico
│   │   │       │   ├── Program.cs
│   │   │       │   ├── Properties
│   │   │       │   │   ├── AssemblyInfo.cs
│   │   │       │   │   ├── Resources.Designer.cs
│   │   │       │   │   ├── Resources.resx
│   │   │       │   │   ├── Settings.Designer.cs
│   │   │       │   │   └── Settings.settings
│   │   │       │   ├── Vista风格的日历.csproj
│   │   │       │   ├── bin
│   │   │       │   │   └── Debug
│   │   │       │   │       ├── Vista风格的日历.exe
│   │   │       │   │       ├── Vista风格的日历.pdb
│   │   │       │   │       ├── Vista风格的日历.vshost.exe
│   │   │       │   │       └── Vista风格的日历.vshost.exe.manifest
│   │   │       │   └── obj
│   │   │       │       └── Debug
│   │   │       │           ├── Refactor
│   │   │       │           ├── TempPE
│   │   │       │           │   └── Properties.Resources.Designer.cs.dll
│   │   │       │           ├── Vista风格的日历.DateTimeControl.resources
│   │   │       │           ├── Vista风格的日历.Form1.resources
│   │   │       │           ├── Vista风格的日历.Frm_Data.resources
│   │   │       │           ├── Vista风格的日历.Properties.Resources.resources
│   │   │       │           ├── Vista风格的日历.csproj.FileListAbsolute.txt
│   │   │       │           ├── Vista风格的日历.csproj.GenerateResource.Cache
│   │   │       │           ├── Vista风格的日历.exe
│   │   │       │           └── Vista风格的日历.pdb
│   │   │       ├── Vista风格的日历.sln
│   │   │       └── Vista风格的日历.suo
│   │   ├── 像Excel一样复制DataGridView中的单元格区域数据
│   │   │   ├── 像Excel一样复制DataGridView中的单元格区域数据
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 像Excel一样复制DataGridView中的单元格区域数据.exe
│   │   │   │   │       ├── 像Excel一样复制DataGridView中的单元格区域数据.pdb
│   │   │   │   │       ├── 像Excel一样复制DataGridView中的单元格区域数据.vshost.exe
│   │   │   │   │       └── 像Excel一样复制DataGridView中的单元格区域数据.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Refactor
│   │   │   │   │       ├── TempPE
│   │   │   │   │       ├── 像Excel一样复制DataGridView中的单元格区域数据.Form1.resources
│   │   │   │   │       ├── 像Excel一样复制DataGridView中的单元格区域数据.Properties.Resources.resources
│   │   │   │   │       ├── 像Excel一样复制DataGridView中的单元格区域数据.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 像Excel一样复制DataGridView中的单元格区域数据.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 像Excel一样复制DataGridView中的单元格区域数据.exe
│   │   │   │   │       └── 像Excel一样复制DataGridView中的单元格区域数据.pdb
│   │   │   │   └── 像Excel一样复制DataGridView中的单元格区域数据.csproj
│   │   │   ├── 像Excel一样复制DataGridView中的单元格区域数据.sln
│   │   │   └── 像Excel一样复制DataGridView中的单元格区域数据.suo
│   │   ├── 组合
│   │   │   ├── Combination
│   │   │   │   ├── Combination.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── LabelAndText.Designer.cs
│   │   │   │   ├── LabelAndText.cs
│   │   │   │   ├── LabelAndText.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Combination.exe
│   │   │   │   │       ├── Combination.pdb
│   │   │   │   │       ├── Combination.vshost.exe
│   │   │   │   │       └── Combination.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── Combination.Form1.resources
│   │   │   │           ├── Combination.LabelAndText.resources
│   │   │   │           ├── Combination.Properties.Resources.resources
│   │   │   │           ├── Combination.csproj.FileListAbsolute.txt
│   │   │   │           ├── Combination.csproj.GenerateResource.Cache
│   │   │   │           ├── Combination.exe
│   │   │   │           ├── Combination.pdb
│   │   │   │           └── TempPE
│   │   │   ├── Combination.sln
│   │   │   └── Combination.suo
│   │   ├── 美化ComboBox
│   │   │   ├── BeautifyComboBox
│   │   │   │   ├── B_ComboBox.Designer.cs
│   │   │   │   ├── B_ComboBox.cs
│   │   │   │   ├── B_ComboBox.resx
│   │   │   │   ├── BeautifyComboBox.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── BeautifyComboBox.exe
│   │   │   │   │       ├── BeautifyComboBox.pdb
│   │   │   │   │       ├── BeautifyComboBox.vshost.exe
│   │   │   │   │       └── BeautifyComboBox.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── BeautifyComboBox.B_ComboBox.resources
│   │   │   │           ├── BeautifyComboBox.Form1.resources
│   │   │   │           ├── BeautifyComboBox.Properties.Resources.resources
│   │   │   │           ├── BeautifyComboBox.csproj.FileListAbsolute.txt
│   │   │   │           ├── BeautifyComboBox.csproj.GenerateResource.Cache
│   │   │   │           ├── BeautifyComboBox.exe
│   │   │   │           ├── BeautifyComboBox.pdb
│   │   │   │           ├── Refactor
│   │   │   │           └── TempPE
│   │   │   ├── BeautifyComboBox.sln
│   │   │   └── BeautifyComboBox.suo
│   │   ├── 美化GroupBox
│   │   │   ├── BeautificationGroupBox
│   │   │   │   ├── B_GroupBox.Designer.cs
│   │   │   │   ├── B_GroupBox.cs
│   │   │   │   ├── B_GroupBox.resx
│   │   │   │   ├── BeautificationGroupBox.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── BeautificationGroupBox.exe
│   │   │   │   │       ├── BeautificationGroupBox.pdb
│   │   │   │   │       ├── BeautificationGroupBox.vshost.exe
│   │   │   │   │       └── BeautificationGroupBox.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── BeautificationGroupBox.B_GroupBox.resources
│   │   │   │           ├── BeautificationGroupBox.Form1.resources
│   │   │   │           ├── BeautificationGroupBox.Properties.Resources.resources
│   │   │   │           ├── BeautificationGroupBox.csproj.FileListAbsolute.txt
│   │   │   │           ├── BeautificationGroupBox.csproj.GenerateResource.Cache
│   │   │   │           ├── BeautificationGroupBox.exe
│   │   │   │           ├── BeautificationGroupBox.pdb
│   │   │   │           └── TempPE
│   │   │   ├── BeautificationGroupBox.sln
│   │   │   └── BeautificationGroupBox.suo
│   │   ├── 重绘ListBox控件
│   │   │   ├── 重绘ListBox控件
│   │   │   │   ├── DrawListBox.Designer.cs
│   │   │   │   ├── DrawListBox.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 重绘ListBox控件.exe
│   │   │   │   │       ├── 重绘ListBox控件.pdb
│   │   │   │   │       ├── 重绘ListBox控件.vshost.exe
│   │   │   │   │       └── 重绘ListBox控件.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── TempPE
│   │   │   │   │       ├── 重绘ListBox控件.Form1.resources
│   │   │   │   │       ├── 重绘ListBox控件.Properties.Resources.resources
│   │   │   │   │       ├── 重绘ListBox控件.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 重绘ListBox控件.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 重绘ListBox控件.exe
│   │   │   │   │       └── 重绘ListBox控件.pdb
│   │   │   │   └── 重绘ListBox控件.csproj
│   │   │   ├── 重绘ListBox控件.sln
│   │   │   └── 重绘ListBox控件.suo
│   │   ├── 清除TreeView内容
│   │   │   ├── ClearContentToTreeView
│   │   │   │   ├── ClearContentToTreeView.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── ClearContentToTreeView.exe
│   │   │   │   │       ├── ClearContentToTreeView.pdb
│   │   │   │   │       ├── ClearContentToTreeView.vshost.exe
│   │   │   │   │       └── ClearContentToTreeView.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── ClearContentToTreeView.Form1.resources
│   │   │   │           ├── ClearContentToTreeView.Properties.Resources.resources
│   │   │   │           ├── ClearContentToTreeView.csproj.FileListAbsolute.txt
│   │   │   │           ├── ClearContentToTreeView.csproj.GenerateResource.Cache
│   │   │   │           ├── ClearContentToTreeView.exe
│   │   │   │           ├── ClearContentToTreeView.pdb
│   │   │   │           └── TempPE
│   │   │   ├── ClearContentToTreeView.sln
│   │   │   └── ClearContentToTreeView.suo
│   │   ├── 合并单元格
│   │   │   ├── UniteCells
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── UniteCells.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── UniteCells.exe
│   │   │   │   │       ├── UniteCells.pdb
│   │   │   │   │       ├── UniteCells.vshost.exe
│   │   │   │   │       └── UniteCells.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── TempPE
│   │   │   │           ├── UniteCells.Form1.resources
│   │   │   │           ├── UniteCells.Properties.Resources.resources
│   │   │   │           ├── UniteCells.csproj.FileListAbsolute.txt
│   │   │   │           ├── UniteCells.csproj.GenerateResource.Cache
│   │   │   │           ├── UniteCells.exe
│   │   │   │           └── UniteCells.pdb
│   │   │   ├── UniteCells.sln
│   │   │   └── UniteCells.suo
│   │   ├── 添加内容到Treeview
│   │   │   ├── AddContentToTreeView
│   │   │   │   ├── AddContentToTreeView.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── AddContentToTreeView.exe
│   │   │   │   │       ├── AddContentToTreeView.pdb
│   │   │   │   │       ├── AddContentToTreeView.vshost.exe
│   │   │   │   │       └── AddContentToTreeView.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── AddContentToTreeView.Form1.resources
│   │   │   │           ├── AddContentToTreeView.Properties.Resources.resources
│   │   │   │           ├── AddContentToTreeView.csproj.FileListAbsolute.txt
│   │   │   │           ├── AddContentToTreeView.csproj.GenerateResource.Cache
│   │   │   │           ├── AddContentToTreeView.exe
│   │   │   │           ├── AddContentToTreeView.pdb
│   │   │   │           └── TempPE
│   │   │   ├── AddContentToTreeView.sln
│   │   │   └── AddContentToTreeView.suo
│   │   ├── 带行数和标尺的RichTextBox
│   │   │   ├── 带行数和标尺的RichTextBox
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── GuageRichTextBox.Designer.cs
│   │   │   │   ├── GuageRichTextBox.cs
│   │   │   │   ├── GuageRichTextBox.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 带行数和标尺的RichTextBox.exe
│   │   │   │   │       ├── 带行数和标尺的RichTextBox.pdb
│   │   │   │   │       ├── 带行数和标尺的RichTextBox.vshost.exe
│   │   │   │   │       └── 带行数和标尺的RichTextBox.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Refactor
│   │   │   │   │       ├── TempPE
│   │   │   │   │       ├── 带行数和标尺的RichTextBox.Form1.resources
│   │   │   │   │       ├── 带行数和标尺的RichTextBox.GuageRichTextBox.resources
│   │   │   │   │       ├── 带行数和标尺的RichTextBox.Properties.Resources.resources
│   │   │   │   │       ├── 带行数和标尺的RichTextBox.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 带行数和标尺的RichTextBox.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 带行数和标尺的RichTextBox.exe
│   │   │   │   │       └── 带行数和标尺的RichTextBox.pdb
│   │   │   │   └── 带行数和标尺的RichTextBox.csproj
│   │   │   ├── 带行数和标尺的RichTextBox.sln
│   │   │   └── 带行数和标尺的RichTextBox.suo
│   │   ├── 自制数值文本框组件
│   │   │   ├── 自制数值文本框组件
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── NumberBox.Designer.cs
│   │   │   │   ├── NumberBox.cs
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 自制数值文本框组件.exe
│   │   │   │   │       ├── 自制数值文本框组件.pdb
│   │   │   │   │       ├── 自制数值文本框组件.vshost.exe
│   │   │   │   │       └── 自制数值文本框组件.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── TempPE
│   │   │   │   │       ├── 自制数值文本框组件.Form1.resources
│   │   │   │   │       ├── 自制数值文本框组件.Properties.Resources.resources
│   │   │   │   │       ├── 自制数值文本框组件.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 自制数值文本框组件.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 自制数值文本框组件.exe
│   │   │   │   │       └── 自制数值文本框组件.pdb
│   │   │   │   └── 自制数值文本框组件.csproj
│   │   │   ├── 自制数值文本框组件.sln
│   │   │   └── 自制数值文本框组件.suo
│   │   ├── 自定义水晶按钮控件
│   │   │   ├── 自定义水晶按钮控件
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Image
│   │   │   │   │   ├── 1.jpg
│   │   │   │   │   └── 2.jpg
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── TransparencyButton.Designer.cs
│   │   │   │   ├── TransparencyButton.cs
│   │   │   │   ├── TransparencyButton.resx
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 自定义水晶按钮控件.exe
│   │   │   │   │       ├── 自定义水晶按钮控件.pdb
│   │   │   │   │       ├── 自定义水晶按钮控件.vshost.exe
│   │   │   │   │       └── 自定义水晶按钮控件.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── TempPE
│   │   │   │   │       ├── 自定义水晶按钮控件.Form1.resources
│   │   │   │   │       ├── 自定义水晶按钮控件.Properties.Resources.resources
│   │   │   │   │       ├── 自定义水晶按钮控件.TransparencyButton.resources
│   │   │   │   │       ├── 自定义水晶按钮控件.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 自定义水晶按钮控件.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 自定义水晶按钮控件.exe
│   │   │   │   │       └── 自定义水晶按钮控件.pdb
│   │   │   │   └── 自定义水晶按钮控件.csproj
│   │   │   ├── 自定义水晶按钮控件.sln
│   │   │   └── 自定义水晶按钮控件.suo
│   │   ├── 弹出模式窗口显示进度条
│   │   │   ├── 弹出模式窗口显示进度条
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Frm_Plan.Designer.cs
│   │   │   │   ├── Frm_Plan.cs
│   │   │   │   ├── Frm_Plan.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 弹出模式窗口显示进度条.exe
│   │   │   │   │       ├── 弹出模式窗口显示进度条.pdb
│   │   │   │   │       ├── 弹出模式窗口显示进度条.vshost.exe
│   │   │   │   │       └── 弹出模式窗口显示进度条.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── TempPE
│   │   │   │   │       ├── 弹出模式窗口显示进度条.Form1.resources
│   │   │   │   │       ├── 弹出模式窗口显示进度条.Frm_Plan.resources
│   │   │   │   │       ├── 弹出模式窗口显示进度条.Properties.Resources.resources
│   │   │   │   │       ├── 弹出模式窗口显示进度条.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 弹出模式窗口显示进度条.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 弹出模式窗口显示进度条.exe
│   │   │   │   │       └── 弹出模式窗口显示进度条.pdb
│   │   │   │   └── 弹出模式窗口显示进度条.csproj
│   │   │   ├── 弹出模式窗口显示进度条.sln
│   │   │   └── 弹出模式窗口显示进度条.suo
│   │   ├── 美化单选按钮和复选按钮
│   │   │   ├── 美化单选按钮和复选按钮
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── GlorifyCheckBox.cs
│   │   │   │   ├── GlorifyCheckBox.designer.cs
│   │   │   │   ├── GlorifyRadioButton.cs
│   │   │   │   ├── GlorifyRadioButton.designer.cs
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 美化单选按钮和复选按钮.exe
│   │   │   │   │       ├── 美化单选按钮和复选按钮.pdb
│   │   │   │   │       ├── 美化单选按钮和复选按钮.vshost.exe
│   │   │   │   │       └── 美化单选按钮和复选按钮.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── TempPE
│   │   │   │   │       ├── 美化单选按钮和复选按钮.Form1.resources
│   │   │   │   │       ├── 美化单选按钮和复选按钮.Properties.Resources.resources
│   │   │   │   │       ├── 美化单选按钮和复选按钮.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 美化单选按钮和复选按钮.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 美化单选按钮和复选按钮.exe
│   │   │   │   │       └── 美化单选按钮和复选按钮.pdb
│   │   │   │   └── 美化单选按钮和复选按钮.csproj
│   │   │   ├── 美化单选按钮和复选按钮.sln
│   │   │   └── 美化单选按钮和复选按钮.suo
│   │   └── 根据文件大小显示文件复制进度条
│   │       ├── 根据文件大小显示文件复制进度条
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── 根据文件大小显示文件复制进度条.exe
│   │       │   │       ├── 根据文件大小显示文件复制进度条.pdb
│   │       │   │       ├── 根据文件大小显示文件复制进度条.vshost.exe
│   │       │   │       └── 根据文件大小显示文件复制进度条.vshost.exe.manifest
│   │       │   ├── obj
│   │       │   │   └── Debug
│   │       │   │       ├── TempPE
│   │       │   │       ├── 根据文件大小显示文件复制进度条.Form1.resources
│   │       │   │       ├── 根据文件大小显示文件复制进度条.Properties.Resources.resources
│   │       │   │       ├── 根据文件大小显示文件复制进度条.csproj.FileListAbsolute.txt
│   │       │   │       ├── 根据文件大小显示文件复制进度条.csproj.GenerateResource.Cache
│   │       │   │       ├── 根据文件大小显示文件复制进度条.exe
│   │       │   │       └── 根据文件大小显示文件复制进度条.pdb
│   │       │   └── 根据文件大小显示文件复制进度条.csproj
│   │       ├── 根据文件大小显示文件复制进度条.sln
│   │       └── 根据文件大小显示文件复制进度条.suo
│   ├── 03-图像操作
│   │   ├── LoadFLASH
│   │   │   ├── LoadFLASH
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── LoadFLASH.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── AxInterop.ShockwaveFlashObjects.dll
│   │   │   │   │       ├── Interop.ShockwaveFlashObjects.dll
│   │   │   │   │       ├── LoadFLASH.exe
│   │   │   │   │       ├── LoadFLASH.pdb
│   │   │   │   │       ├── LoadFLASH.vshost.exe
│   │   │   │   │       └── LoadFLASH.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── AxInterop.ShockwaveFlashObjects.dll
│   │   │   │           ├── Interop.ShockwaveFlashObjects.dll
│   │   │   │           ├── LoadFLASH.Form1.resources
│   │   │   │           ├── LoadFLASH.Properties.Resources.resources
│   │   │   │           ├── LoadFLASH.csproj.FileListAbsolute.txt
│   │   │   │           ├── LoadFLASH.csproj.GenerateResource.Cache
│   │   │   │           ├── LoadFLASH.csproj.ResolveComReference.cache
│   │   │   │           ├── LoadFLASH.exe
│   │   │   │           ├── LoadFLASH.pdb
│   │   │   │           └── TempPE
│   │   │   ├── LoadFLASH.sln
│   │   │   └── LoadFLASH.suo
│   │   ├── MP3Player
│   │   │   ├── MP3Player
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── MP3Player.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── Resources
│   │   │   │   │   ├── player.png
│   │   │   │   │   └── player11.png
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── AxInterop.WMPLib.dll
│   │   │   │   │       ├── Interop.WMPLib.dll
│   │   │   │   │       ├── MP3Player.exe
│   │   │   │   │       ├── MP3Player.pdb
│   │   │   │   │       ├── MP3Player.vshost.exe
│   │   │   │   │       └── MP3Player.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── AxInterop.WMPLib.dll
│   │   │   │   │       ├── Interop.FlashBrokerLib.dll
│   │   │   │   │       ├── Interop.WMPLib.dll
│   │   │   │   │       ├── MP3Player.Form1.resources
│   │   │   │   │       ├── MP3Player.Properties.Resources.resources
│   │   │   │   │       ├── MP3Player.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── MP3Player.csproj.GenerateResource.Cache
│   │   │   │   │       ├── MP3Player.csproj.ResolveComReference.cache
│   │   │   │   │       ├── MP3Player.exe
│   │   │   │   │       ├── MP3Player.pdb
│   │   │   │   │       └── TempPE
│   │   │   │   │           └── Properties.Resources.Designer.cs.dll
│   │   │   │   ├── player11.png
│   │   │   │   ├── 停止按钮.png
│   │   │   │   ├── 播放按钮.png
│   │   │   │   ├── 暂停按钮.png
│   │   │   │   ├── 音量按钮.png
│   │   │   │   ├── 停止按钮变.png
│   │   │   │   ├── 播放按钮变.png
│   │   │   │   ├── 文件夹打开.png
│   │   │   │   ├── 暂停按钮变.png
│   │   │   │   └── 音量按钮变色.png
│   │   │   └── MP3Player.sln
│   │   ├── PictureBox显示图片
│   │   │   ├── PictureBoxShowImage
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── PictureBoxShowImage.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── PictureBoxShowImage.exe
│   │   │   │   │       ├── PictureBoxShowImage.pdb
│   │   │   │   │       ├── PictureBoxShowImage.vshost.exe
│   │   │   │   │       └── PictureBoxShowImage.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── PictureBoxShowImage.Form1.resources
│   │   │   │           ├── PictureBoxShowImage.Properties.Resources.resources
│   │   │   │           ├── PictureBoxShowImage.csproj.FileListAbsolute.txt
│   │   │   │           ├── PictureBoxShowImage.csproj.GenerateResource.Cache
│   │   │   │           ├── PictureBoxShowImage.exe
│   │   │   │           ├── PictureBoxShowImage.pdb
│   │   │   │           └── TempPE
│   │   │   ├── PictureBoxShowImage.sln
│   │   │   └── PictureBoxShowImage.suo
│   │   ├── listview数据添加去闪烁
│   │   │   ├── listviewItemAdd
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── listviewItemAdd.exe
│   │   │   │   │       ├── listviewItemAdd.pdb
│   │   │   │   │       ├── listviewItemAdd.vshost.exe
│   │   │   │   │       └── listviewItemAdd.vshost.exe.manifest
│   │   │   │   ├── listviewItemAdd.csproj
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── TempPE
│   │   │   │           ├── listviewItemAdd.Form1.resources
│   │   │   │           ├── listviewItemAdd.Properties.Resources.resources
│   │   │   │           ├── listviewItemAdd.csproj.FileListAbsolute.txt
│   │   │   │           ├── listviewItemAdd.csproj.GenerateResource.Cache
│   │   │   │           ├── listviewItemAdd.exe
│   │   │   │           └── listviewItemAdd.pdb
│   │   │   ├── listviewItemAdd.sln
│   │   │   └── listviewItemAdd.suo
│   │   ├── 仿QQ截图
│   │   │   ├── ScreenCutter
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Form2.Designer.cs
│   │   │   │   ├── Form2.cs
│   │   │   │   ├── Form2.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── ScreenCutter.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── ScreenCutter.exe
│   │   │   │   │       ├── ScreenCutter.pdb
│   │   │   │   │       ├── ScreenCutter.vshost.exe
│   │   │   │   │       └── ScreenCutter.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── Refactor
│   │   │   │           ├── ScreenCutter.Form1.resources
│   │   │   │           ├── ScreenCutter.Form2.resources
│   │   │   │           ├── ScreenCutter.Properties.Resources.resources
│   │   │   │           ├── ScreenCutter.csproj.FileListAbsolute.txt
│   │   │   │           ├── ScreenCutter.csproj.GenerateResource.Cache
│   │   │   │           ├── ScreenCutter.exe
│   │   │   │           ├── ScreenCutter.pdb
│   │   │   │           └── TempPE
│   │   │   └── ScreenCutter.sln
│   │   ├── 播放Flash
│   │   │   ├── playflash
│   │   │   │   ├── AboutBox1.Designer.cs
│   │   │   │   ├── AboutBox1.cs
│   │   │   │   ├── AboutBox1.resx
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bg1.png
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── AxInterop.ShockwaveFlashObjects.dll
│   │   │   │   │       ├── Interop.ShockwaveFlashObjects.dll
│   │   │   │   │       ├── playflash.exe
│   │   │   │   │       ├── playflash.pdb
│   │   │   │   │       ├── playflash.vshost.exe
│   │   │   │   │       └── playflash.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── AxInterop.ShockwaveFlashObjects.dll
│   │   │   │   │       ├── Interop.ShockwaveFlashObjects.dll
│   │   │   │   │       ├── ResolveAssemblyReference.cache
│   │   │   │   │       ├── TempPE
│   │   │   │   │       │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   │       ├── playflash.AboutBox1.resources
│   │   │   │   │       ├── playflash.Form1.resources
│   │   │   │   │       ├── playflash.Properties.Resources.resources
│   │   │   │   │       ├── playflash.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── playflash.csproj.GenerateResource.Cache
│   │   │   │   │       ├── playflash.csproj.ResolveComReference.cache
│   │   │   │   │       ├── playflash.exe
│   │   │   │   │       └── playflash.pdb
│   │   │   │   └── playflash.csproj
│   │   │   └── playflash.sln
│   │   ├── 播放Flv
│   │   │   ├── Playflv
│   │   │   │   ├── FLVPlayer
│   │   │   │   │   ├── FLVplayer.swf
│   │   │   │   │   ├── SteelExternalAll.swf
│   │   │   │   │   └── list.xml
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Playflv.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── AxInterop.ShockwaveFlashObjects.dll
│   │   │   │   │       ├── AxInterop.WMPLib.dll
│   │   │   │   │       ├── Interop.Scripting.dll
│   │   │   │   │       ├── Interop.ShockwaveFlashObjects.dll
│   │   │   │   │       ├── Interop.WMPLib.dll
│   │   │   │   │       ├── Playflv.exe
│   │   │   │   │       ├── Playflv.pdb
│   │   │   │   │       ├── Playflv.vshost.exe
│   │   │   │   │       └── Playflv.vshost.exe.manifest
│   │   │   │   ├── down.png
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── AxInterop.ShockwaveFlashObjects.dll
│   │   │   │   │       ├── AxInterop.WMPLib.dll
│   │   │   │   │       ├── Interop.Scripting.dll
│   │   │   │   │       ├── Interop.ShockwaveFlashObjects.dll
│   │   │   │   │       ├── Interop.WMPLib.dll
│   │   │   │   │       ├── Playflv.Form1.resources
│   │   │   │   │       ├── Playflv.Properties.Resources.resources
│   │   │   │   │       ├── Playflv.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── Playflv.csproj.GenerateResource.Cache
│   │   │   │   │       ├── Playflv.csproj.ResolveComReference.cache
│   │   │   │   │       ├── Playflv.exe
│   │   │   │   │       ├── Playflv.pdb
│   │   │   │   │       ├── ResolveAssemblyReference.cache
│   │   │   │   │       └── TempPE
│   │   │   │   │           └── Properties.Resources.Designer.cs.dll
│   │   │   │   ├── up.png
│   │   │   │   ├── 图标 (190).ico
│   │   │   │   ├── 图标 (220).ico
│   │   │   │   ├── 图标 (42).ico
│   │   │   │   ├── 图标 (8).ico
│   │   │   │   └── 删除.ico
│   │   │   └── Playflv.sln
│   │   ├── 播放Mp3
│   │   │   ├── stopplaymp3
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── AxInterop.WMPLib.dll
│   │   │   │   │       ├── Interop.WMPLib.dll
│   │   │   │   │       ├── stopplaymp3.exe
│   │   │   │   │       ├── stopplaymp3.pdb
│   │   │   │   │       ├── stopplaymp3.vshost.exe
│   │   │   │   │       └── stopplaymp3.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── AxInterop.WMPLib.dll
│   │   │   │   │       ├── Interop.WMPLib.dll
│   │   │   │   │       ├── TempPE
│   │   │   │   │       ├── stopplaymp3.Form1.resources
│   │   │   │   │       ├── stopplaymp3.Properties.Resources.resources
│   │   │   │   │       ├── stopplaymp3.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── stopplaymp3.csproj.GenerateResource.Cache
│   │   │   │   │       ├── stopplaymp3.csproj.ResolveComReference.cache
│   │   │   │   │       ├── stopplaymp3.exe
│   │   │   │   │       └── stopplaymp3.pdb
│   │   │   │   └── stopplaymp3.csproj
│   │   │   ├── stopplaymp3.sln
│   │   │   └── stopplaymp3.suo
│   │   ├── 打开Url
│   │   │   ├── openUrl
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── openUrl.exe
│   │   │   │   │       ├── openUrl.pdb
│   │   │   │   │       ├── openUrl.vshost.exe
│   │   │   │   │       └── openUrl.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── TempPE
│   │   │   │   │       ├── openUrl.Form1.resources
│   │   │   │   │       ├── openUrl.Properties.Resources.resources
│   │   │   │   │       ├── openUrl.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── openUrl.csproj.GenerateResource.Cache
│   │   │   │   │       ├── openUrl.exe
│   │   │   │   │       └── openUrl.pdb
│   │   │   │   └── openUrl.csproj
│   │   │   ├── openUrl.sln
│   │   │   └── openUrl.suo
│   │   ├── 操作XML
│   │   │   ├── optionXML
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── optionXML.exe
│   │   │   │   │       ├── optionXML.pdb
│   │   │   │   │       ├── optionXML.vshost.exe
│   │   │   │   │       └── optionXML.vshost.exe.manifest
│   │   │   │   ├── list.xml
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── TempPE
│   │   │   │   │       ├── optionXML.Form1.resources
│   │   │   │   │       ├── optionXML.Properties.Resources.resources
│   │   │   │   │       ├── optionXML.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── optionXML.csproj.GenerateResource.Cache
│   │   │   │   │       ├── optionXML.exe
│   │   │   │   │       └── optionXML.pdb
│   │   │   │   └── optionXML.csproj
│   │   │   ├── optionXML.sln
│   │   │   └── optionXML.suo
│   │   ├── 取色器
│   │   │   ├── curColor
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── curColor.exe
│   │   │   │   │       ├── curColor.pdb
│   │   │   │   │       ├── curColor.vshost.exe
│   │   │   │   │       └── curColor.vshost.exe.manifest
│   │   │   │   ├── curColor.csproj
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── TempPE
│   │   │   │           ├── curColor.Form1.resources
│   │   │   │           ├── curColor.Properties.Resources.resources
│   │   │   │           ├── curColor.csproj.FileListAbsolute.txt
│   │   │   │           ├── curColor.csproj.GenerateResource.Cache
│   │   │   │           ├── curColor.exe
│   │   │   │           └── curColor.pdb
│   │   │   ├── curColor.sln
│   │   │   └── curColor.suo
│   │   ├── 缩略图
│   │   │   ├── Microimage
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Microimage.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Microimage.exe
│   │   │   │   │       ├── Microimage.pdb
│   │   │   │   │       ├── Microimage.vshost.exe
│   │   │   │   │       └── Microimage.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── Microimage.Form1.resources
│   │   │   │           ├── Microimage.Properties.Resources.resources
│   │   │   │           ├── Microimage.csproj.FileListAbsolute.txt
│   │   │   │           ├── Microimage.csproj.GenerateResource.Cache
│   │   │   │           ├── Microimage.exe
│   │   │   │           ├── Microimage.pdb
│   │   │   │           └── TempPE
│   │   │   ├── Microimage.sln
│   │   │   └── Microimage.suo
│   │   ├── 压缩图片
│   │   │   ├── Compositing
│   │   │   │   ├── Compositing
│   │   │   │   │   ├── Compositing.csproj
│   │   │   │   │   ├── Form1.Designer.cs
│   │   │   │   │   ├── Form1.cs
│   │   │   │   │   ├── Form1.resx
│   │   │   │   │   ├── Program.cs
│   │   │   │   │   ├── Properties
│   │   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   │   ├── Resources.resx
│   │   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   │   └── Settings.settings
│   │   │   │   │   ├── bin
│   │   │   │   │   │   └── Debug
│   │   │   │   │   │       ├── Compositing.exe
│   │   │   │   │   │       ├── Compositing.pdb
│   │   │   │   │   │       ├── Compositing.vshost.exe
│   │   │   │   │   │       └── Compositing.vshost.exe.manifest
│   │   │   │   │   └── obj
│   │   │   │   │       └── Debug
│   │   │   │   │           ├── Compositing.Form1.resources
│   │   │   │   │           ├── Compositing.Properties.Resources.resources
│   │   │   │   │           ├── Compositing.csproj.FileListAbsolute.txt
│   │   │   │   │           ├── Compositing.csproj.GenerateResource.Cache
│   │   │   │   │           ├── Compositing.exe
│   │   │   │   │           ├── Compositing.pdb
│   │   │   │   │           └── TempPE
│   │   │   │   ├── Compositing.sln
│   │   │   │   └── Compositing.suo
│   │   │   └── 无损压缩
│   │   │       ├── CompressImg
│   │   │       │   ├── CompressImg.csproj
│   │   │       │   ├── Form1.Designer.cs
│   │   │       │   ├── Form1.cs
│   │   │       │   ├── Form1.resx
│   │   │       │   ├── Program.cs
│   │   │       │   ├── Properties
│   │   │       │   │   ├── AssemblyInfo.cs
│   │   │       │   │   ├── Resources.Designer.cs
│   │   │       │   │   ├── Resources.resx
│   │   │       │   │   ├── Settings.Designer.cs
│   │   │       │   │   └── Settings.settings
│   │   │       │   ├── bin
│   │   │       │   │   └── Debug
│   │   │       │   │       ├── CompressImg.exe
│   │   │       │   │       ├── CompressImg.pdb
│   │   │       │   │       ├── CompressImg.vshost.exe
│   │   │       │   │       └── CompressImg.vshost.exe.manifest
│   │   │       │   ├── obj
│   │   │       │   │   └── Debug
│   │   │       │   │       ├── CompressImg.Form1.resources
│   │   │       │   │       ├── CompressImg.Properties.Resources.resources
│   │   │       │   │       ├── CompressImg.csproj.FileListAbsolute.txt
│   │   │       │   │       ├── CompressImg.csproj.GenerateResource.Cache
│   │   │       │   │       ├── CompressImg.exe
│   │   │       │   │       ├── CompressImg.pdb
│   │   │       │   │       ├── Refactor
│   │   │       │   │       └── TempPE
│   │   │       │   │           └── Properties.Resources.Designer.cs.dll
│   │   │       │   └── 文件夹打开.png
│   │   │       ├── CompressImg.sln
│   │   │       └── CompressImg.suo
│   │   ├── 图片合成
│   │   │   ├── composeImage
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── composeImage.exe
│   │   │   │   │       ├── composeImage.pdb
│   │   │   │   │       ├── composeImage.vshost.exe
│   │   │   │   │       └── composeImage.vshost.exe.manifest
│   │   │   │   ├── composeImage.csproj
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── TempPE
│   │   │   │           ├── composeImage.Form1.resources
│   │   │   │           ├── composeImage.Properties.Resources.resources
│   │   │   │           ├── composeImage.csproj.FileListAbsolute.txt
│   │   │   │           ├── composeImage.csproj.GenerateResource.Cache
│   │   │   │           ├── composeImage.exe
│   │   │   │           └── composeImage.pdb
│   │   │   ├── composeImage.sln
│   │   │   └── composeImage.suo
│   │   ├── 图片透明
│   │   │   ├── ImageClarity
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── ImageClarity.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── ImageClarity.exe
│   │   │   │   │       ├── ImageClarity.pdb
│   │   │   │   │       ├── ImageClarity.vshost.exe
│   │   │   │   │       └── ImageClarity.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── ImageClarity.Form1.resources
│   │   │   │           ├── ImageClarity.Properties.Resources.resources
│   │   │   │           ├── ImageClarity.csproj.FileListAbsolute.txt
│   │   │   │           ├── ImageClarity.csproj.GenerateResource.Cache
│   │   │   │           ├── ImageClarity.exe
│   │   │   │           ├── ImageClarity.pdb
│   │   │   │           └── TempPE
│   │   │   ├── ImageClarity.sln
│   │   │   └── ImageClarity.suo
│   │   ├── 屏幕抓图
│   │   │   ├── GetScreen
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── GetScreen.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── Setup.ini
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── GetScreen.exe
│   │   │   │   │       ├── GetScreen.pdb
│   │   │   │   │       ├── GetScreen.vshost.exe
│   │   │   │   │       └── GetScreen.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── GetScreen.Form1.resources
│   │   │   │   │       ├── GetScreen.Properties.Resources.resources
│   │   │   │   │       ├── GetScreen.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── GetScreen.csproj.GenerateResource.Cache
│   │   │   │   │       ├── GetScreen.exe
│   │   │   │   │       ├── GetScreen.pdb
│   │   │   │   │       ├── Refactor
│   │   │   │   │       └── TempPE
│   │   │   │   └── 图标 (118).ico
│   │   │   └── GetScreen.sln
│   │   ├── 抓取桌面
│   │   │   ├── drawpartImage
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── drawpartImage.exe
│   │   │   │   │       ├── drawpartImage.pdb
│   │   │   │   │       ├── drawpartImage.vshost.exe
│   │   │   │   │       └── drawpartImage.vshost.exe.manifest
│   │   │   │   ├── drawpartImage.csproj
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── TempPE
│   │   │   │           ├── drawpartImage.Form1.resources
│   │   │   │           ├── drawpartImage.Properties.Resources.resources
│   │   │   │           ├── drawpartImage.csproj.FileListAbsolute.txt
│   │   │   │           ├── drawpartImage.csproj.GenerateResource.Cache
│   │   │   │           ├── drawpartImage.exe
│   │   │   │           └── drawpartImage.pdb
│   │   │   ├── drawpartImage.sln
│   │   │   └── drawpartImage.suo
│   │   ├── 石英时钟
│   │   │   ├── QuartzClock
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── QuartzClock.csproj
│   │   │   │   ├── bg.png
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── QuartzClock.exe
│   │   │   │   │       ├── QuartzClock.pdb
│   │   │   │   │       ├── QuartzClock.vshost.exe
│   │   │   │   │       └── QuartzClock.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── QuartzClock.Form1.resources
│   │   │   │   │       ├── QuartzClock.Properties.Resources.resources
│   │   │   │   │       ├── QuartzClock.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── QuartzClock.csproj.GenerateResource.Cache
│   │   │   │   │       ├── QuartzClock.exe
│   │   │   │   │       ├── QuartzClock.pdb
│   │   │   │   │       └── TempPE
│   │   │   │   │           └── Properties.Resources.Designer.cs.dll
│   │   │   │   └── 图标 (123).ico
│   │   │   └── QuartzClock.sln
│   │   ├── 绘制噪点
│   │   │   ├── DrawBackground
│   │   │   │   ├── DrawBackground.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── DrawBackground.exe
│   │   │   │   │       ├── DrawBackground.pdb
│   │   │   │   │       ├── DrawBackground.vshost.exe
│   │   │   │   │       └── DrawBackground.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── DrawBackground.Form1.resources
│   │   │   │           ├── DrawBackground.Properties.Resources.resources
│   │   │   │           ├── DrawBackground.csproj.FileListAbsolute.txt
│   │   │   │           ├── DrawBackground.csproj.GenerateResource.Cache
│   │   │   │           ├── DrawBackground.exe
│   │   │   │           ├── DrawBackground.pdb
│   │   │   │           └── TempPE
│   │   │   ├── DrawBackground.sln
│   │   │   └── DrawBackground.suo
│   │   ├── 绘制文字
│   │   │   ├── DrawFont
│   │   │   │   ├── DrawFont.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── DrawFont.exe
│   │   │   │   │       ├── DrawFont.pdb
│   │   │   │   │       ├── DrawFont.vshost.exe
│   │   │   │   │       └── DrawFont.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── DrawFont.Form1.resources
│   │   │   │           ├── DrawFont.Properties.Resources.resources
│   │   │   │           ├── DrawFont.csproj.FileListAbsolute.txt
│   │   │   │           ├── DrawFont.csproj.GenerateResource.Cache
│   │   │   │           ├── DrawFont.exe
│   │   │   │           ├── DrawFont.pdb
│   │   │   │           └── TempPE
│   │   │   ├── DrawFont.sln
│   │   │   └── DrawFont.suo
│   │   ├── 绘制直线
│   │   │   ├── drawLine
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── drawLine.exe
│   │   │   │   │       ├── drawLine.pdb
│   │   │   │   │       ├── drawLine.vshost.exe
│   │   │   │   │       └── drawLine.vshost.exe.manifest
│   │   │   │   ├── drawLine.csproj
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── TempPE
│   │   │   │           ├── drawLine.Form1.resources
│   │   │   │           ├── drawLine.Properties.Resources.resources
│   │   │   │           ├── drawLine.csproj.FileListAbsolute.txt
│   │   │   │           ├── drawLine.csproj.GenerateResource.Cache
│   │   │   │           ├── drawLine.exe
│   │   │   │           └── drawLine.pdb
│   │   │   ├── drawLine.sln
│   │   │   └── drawLine.suo
│   │   ├── 绘制选中
│   │   │   ├── drawSelect
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Form2.Designer.cs
│   │   │   │   ├── Form2.cs
│   │   │   │   ├── Form2.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── drawSelect.exe
│   │   │   │   │       ├── drawSelect.pdb
│   │   │   │   │       ├── drawSelect.vshost.exe
│   │   │   │   │       └── drawSelect.vshost.exe.manifest
│   │   │   │   ├── drawSelect.csproj
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── TempPE
│   │   │   │           ├── drawSelect.Form1.resources
│   │   │   │           ├── drawSelect.Form2.resources
│   │   │   │           ├── drawSelect.Properties.Resources.resources
│   │   │   │           ├── drawSelect.csproj.FileListAbsolute.txt
│   │   │   │           ├── drawSelect.csproj.GenerateResource.Cache
│   │   │   │           ├── drawSelect.exe
│   │   │   │           └── drawSelect.pdb
│   │   │   ├── drawSelect.sln
│   │   │   └── drawSelect.suo
│   │   ├── 绘制鼠标Cur
│   │   │   ├── drawcur
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── drawcur.exe
│   │   │   │   │       ├── drawcur.pdb
│   │   │   │   │       ├── drawcur.vshost.exe
│   │   │   │   │       └── drawcur.vshost.exe.manifest
│   │   │   │   ├── drawcur.csproj
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── TempPE
│   │   │   │           ├── drawcur.Form1.resources
│   │   │   │           ├── drawcur.Properties.Resources.resources
│   │   │   │           ├── drawcur.csproj.FileListAbsolute.txt
│   │   │   │           ├── drawcur.csproj.GenerateResource.Cache
│   │   │   │           ├── drawcur.exe
│   │   │   │           └── drawcur.pdb
│   │   │   ├── drawcur.sln
│   │   │   └── drawcur.suo
│   │   ├── 中文验证码
│   │   │   ├── ChineseCode
│   │   │   │   ├── ChineseCode.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── ChineseCode.exe
│   │   │   │   │       ├── ChineseCode.pdb
│   │   │   │   │       ├── ChineseCode.vshost.exe
│   │   │   │   │       └── ChineseCode.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── ChineseCode.Form1.resources
│   │   │   │           ├── ChineseCode.Properties.Resources.resources
│   │   │   │           ├── ChineseCode.csproj.FileListAbsolute.txt
│   │   │   │           ├── ChineseCode.csproj.GenerateResource.Cache
│   │   │   │           ├── ChineseCode.exe
│   │   │   │           ├── ChineseCode.pdb
│   │   │   │           ├── Refactor
│   │   │   │           └── TempPE
│   │   │   └── ChineseCode.sln
│   │   ├── 图片缩略图
│   │   │   ├── ImgMicroimage
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── ImgMicroimage.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── Resources
│   │   │   │   │   ├── 图标 (55).png
│   │   │   │   │   ├── 图标 (68).png
│   │   │   │   │   ├── 打开.ico
│   │   │   │   │   └── 打开1.ico
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── ImgMicroimage.exe
│   │   │   │   │       ├── ImgMicroimage.pdb
│   │   │   │   │       ├── ImgMicroimage.vshost.exe
│   │   │   │   │       ├── ImgMicroimage.vshost.exe.manifest
│   │   │   │   │       └── Interop.Scripting.dll
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── ImgMicroimage.Form1.resources
│   │   │   │           ├── ImgMicroimage.Properties.Resources.resources
│   │   │   │           ├── ImgMicroimage.csproj.FileListAbsolute.txt
│   │   │   │           ├── ImgMicroimage.csproj.GenerateResource.Cache
│   │   │   │           ├── ImgMicroimage.csproj.ResolveComReference.cache
│   │   │   │           ├── ImgMicroimage.exe
│   │   │   │           ├── ImgMicroimage.pdb
│   │   │   │           ├── Interop.Scripting.dll
│   │   │   │           ├── Refactor
│   │   │   │           └── TempPE
│   │   │   │               └── Properties.Resources.Designer.cs.dll
│   │   │   └── ImgMicroimage.sln
│   │   ├── 计时器例子
│   │   │   ├── TimerApplication
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── TimerApplication.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── TimerApplication.exe
│   │   │   │   │       ├── TimerApplication.pdb
│   │   │   │   │       ├── TimerApplication.vshost.exe
│   │   │   │   │       └── TimerApplication.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── TempPE
│   │   │   │           ├── TimerApplication.Form1.resources
│   │   │   │           ├── TimerApplication.Properties.Resources.resources
│   │   │   │           ├── TimerApplication.csproj.FileListAbsolute.txt
│   │   │   │           ├── TimerApplication.csproj.GenerateResource.Cache
│   │   │   │           ├── TimerApplication.exe
│   │   │   │           └── TimerApplication.pdb
│   │   │   ├── TimerApplication.sln
│   │   │   └── TimerApplication.suo
│   │   ├── 颜色拾取器
│   │   │   ├── GetColor
│   │   │   │   ├── AboutBox1.Designer.cs
│   │   │   │   ├── AboutBox1.cs
│   │   │   │   ├── AboutBox1.resx
│   │   │   │   ├── FrmGetColor.Designer.cs
│   │   │   │   ├── FrmGetColor.cs
│   │   │   │   ├── FrmGetColor.resx
│   │   │   │   ├── GetColor.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── GetColor.exe
│   │   │   │   │       ├── GetColor.pdb
│   │   │   │   │       ├── GetColor.vshost.exe
│   │   │   │   │       └── GetColor.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── GetColor.AboutBox1.resources
│   │   │   │           ├── GetColor.FrmGetColor.resources
│   │   │   │           ├── GetColor.Properties.Resources.resources
│   │   │   │           ├── GetColor.csproj.FileListAbsolute.txt
│   │   │   │           ├── GetColor.csproj.GenerateResource.Cache
│   │   │   │           ├── GetColor.exe
│   │   │   │           ├── GetColor.pdb
│   │   │   │           ├── Refactor
│   │   │   │           └── TempPE
│   │   │   ├── GetColor.sln
│   │   │   └── GetColor.suo
│   │   ├── 图片自动播放
│   │   │   ├── PicPlay
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Form2.Designer.cs
│   │   │   │   ├── Form2.cs
│   │   │   │   ├── Form2.resx
│   │   │   │   ├── PicPlay.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── PicPlay.exe
│   │   │   │   │       ├── PicPlay.pdb
│   │   │   │   │       ├── PicPlay.vshost.exe
│   │   │   │   │       └── PicPlay.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── PicPlay.Form1.resources
│   │   │   │   │       ├── PicPlay.Form2.resources
│   │   │   │   │       ├── PicPlay.Properties.Resources.resources
│   │   │   │   │       ├── PicPlay.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── PicPlay.csproj.GenerateResource.Cache
│   │   │   │   │       ├── PicPlay.exe
│   │   │   │   │       ├── PicPlay.pdb
│   │   │   │   │       ├── Refactor
│   │   │   │   │       └── TempPE
│   │   │   │   │           └── Properties.Resources.Designer.cs.dll
│   │   │   │   └── 图标 (57).png
│   │   │   └── PicPlay.sln
│   │   ├── 图片转换格式
│   │   │   ├── ImgType
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── ImgType.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── ImgType.exe
│   │   │   │   │       ├── ImgType.pdb
│   │   │   │   │       ├── ImgType.vshost.exe
│   │   │   │   │       └── ImgType.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── ImgType.Form1.resources
│   │   │   │           ├── ImgType.Properties.Resources.resources
│   │   │   │           ├── ImgType.csproj.FileListAbsolute.txt
│   │   │   │           ├── ImgType.csproj.GenerateResource.Cache
│   │   │   │           ├── ImgType.exe
│   │   │   │           ├── ImgType.pdb
│   │   │   │           └── TempPE
│   │   │   ├── ImgType.sln
│   │   │   └── ImgType.suo
│   │   ├── 批量添加水印
│   │   │   ├── IMGwatermark
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Form2.Designer.cs
│   │   │   │   ├── Form2.cs
│   │   │   │   ├── Form2.resx
│   │   │   │   ├── IMGwatermark.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── IMGwatermark.exe
│   │   │   │   │       ├── IMGwatermark.pdb
│   │   │   │   │       ├── IMGwatermark.vshost.exe
│   │   │   │   │       └── IMGwatermark.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── IMGwatermark.Form1.resources
│   │   │   │           ├── IMGwatermark.Form2.resources
│   │   │   │           ├── IMGwatermark.Properties.Resources.resources
│   │   │   │           ├── IMGwatermark.csproj.FileListAbsolute.txt
│   │   │   │           ├── IMGwatermark.csproj.GenerateResource.Cache
│   │   │   │           ├── IMGwatermark.exe
│   │   │   │           ├── IMGwatermark.pdb
│   │   │   │           ├── Refactor
│   │   │   │           └── TempPE
│   │   │   │               └── Properties.Resources.Designer.cs.dll
│   │   │   └── IMGwatermark.sln
│   │   ├── 抓取整站图片
│   │   │   ├── WebSnap
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── WebSnap.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── WebSnap.exe
│   │   │   │   │       ├── WebSnap.pdb
│   │   │   │   │       ├── WebSnap.vshost.exe
│   │   │   │   │       └── WebSnap.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Refactor
│   │   │   │   │       ├── TempPE
│   │   │   │   │       │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   │       ├── WebSnap.Form1.resources
│   │   │   │   │       ├── WebSnap.Properties.Resources.resources
│   │   │   │   │       ├── WebSnap.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── WebSnap.csproj.GenerateResource.Cache
│   │   │   │   │       ├── WebSnap.exe
│   │   │   │   │       └── WebSnap.pdb
│   │   │   │   └── 转到.ico
│   │   │   ├── WebSnap.sln
│   │   │   └── WebSnap.suo
│   │   ├── 给图片加日期
│   │   │   ├── IMGAddDate
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── IMGAddDate.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── Resources
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── IMGAddDate.exe
│   │   │   │   │       ├── IMGAddDate.pdb
│   │   │   │   │       ├── IMGAddDate.vshost.exe
│   │   │   │   │       └── IMGAddDate.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── IMGAddDate.Form1.resources
│   │   │   │           ├── IMGAddDate.Properties.Resources.resources
│   │   │   │           ├── IMGAddDate.csproj.FileListAbsolute.txt
│   │   │   │           ├── IMGAddDate.csproj.GenerateResource.Cache
│   │   │   │           ├── IMGAddDate.exe
│   │   │   │           ├── IMGAddDate.pdb
│   │   │   │           ├── Refactor
│   │   │   │           └── TempPE
│   │   │   │               └── Properties.Resources.Designer.cs.dll
│   │   │   └── IMGAddDate.sln
│   │   ├── 获取当前时间
│   │   │   ├── GetNowTime
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── GetNowTime.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── GetNowTime.exe
│   │   │   │   │       ├── GetNowTime.pdb
│   │   │   │   │       ├── GetNowTime.vshost.exe
│   │   │   │   │       └── GetNowTime.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── GetNowTime.Form1.resources
│   │   │   │           ├── GetNowTime.Properties.Resources.resources
│   │   │   │           ├── GetNowTime.csproj.FileListAbsolute.txt
│   │   │   │           ├── GetNowTime.csproj.GenerateResource.Cache
│   │   │   │           ├── GetNowTime.exe
│   │   │   │           ├── GetNowTime.pdb
│   │   │   │           └── TempPE
│   │   │   ├── GetNowTime.sln
│   │   │   └── GetNowTime.suo
│   │   ├── 获取照片时间
│   │   │   ├── ImageDate
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── ImageDate.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── ImageDate.exe
│   │   │   │   │       ├── ImageDate.pdb
│   │   │   │   │       ├── ImageDate.vshost.exe
│   │   │   │   │       └── ImageDate.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── ImageDate.Form1.resources
│   │   │   │           ├── ImageDate.Properties.Resources.resources
│   │   │   │           ├── ImageDate.csproj.FileListAbsolute.txt
│   │   │   │           ├── ImageDate.csproj.GenerateResource.Cache
│   │   │   │           ├── ImageDate.exe
│   │   │   │           ├── ImageDate.pdb
│   │   │   │           └── TempPE
│   │   │   ├── ImageDate.sln
│   │   │   └── ImageDate.suo
│   │   ├── 获取鼠标坐标
│   │   │   ├── CurPosion
│   │   │   │   ├── CurPosion.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── CurPosion.exe
│   │   │   │   │       ├── CurPosion.pdb
│   │   │   │   │       ├── CurPosion.vshost.exe
│   │   │   │   │       └── CurPosion.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── CurPosion.Form1.resources
│   │   │   │           ├── CurPosion.Properties.Resources.resources
│   │   │   │           ├── CurPosion.csproj.FileListAbsolute.txt
│   │   │   │           ├── CurPosion.csproj.GenerateResource.Cache
│   │   │   │           ├── CurPosion.exe
│   │   │   │           ├── CurPosion.pdb
│   │   │   │           └── TempPE
│   │   │   ├── CurPosion.sln
│   │   │   └── CurPosion.suo
│   │   ├── 图片上绘制文字
│   │   │   ├── ImageFont
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── ImageFont.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── ImageFont.exe
│   │   │   │   │       ├── ImageFont.pdb
│   │   │   │   │       ├── ImageFont.vshost.exe
│   │   │   │   │       └── ImageFont.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── ImageFont.Form1.resources
│   │   │   │           ├── ImageFont.Properties.Resources.resources
│   │   │   │           ├── ImageFont.csproj.FileListAbsolute.txt
│   │   │   │           ├── ImageFont.csproj.GenerateResource.Cache
│   │   │   │           ├── ImageFont.exe
│   │   │   │           ├── ImageFont.pdb
│   │   │   │           └── TempPE
│   │   │   ├── ImageFont.sln
│   │   │   └── ImageFont.suo
│   │   ├── 抓取左上角图片
│   │   │   ├── drawpart
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── drawpart.exe
│   │   │   │   │       ├── drawpart.pdb
│   │   │   │   │       ├── drawpart.vshost.exe
│   │   │   │   │       └── drawpart.vshost.exe.manifest
│   │   │   │   ├── drawpart.csproj
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── TempPE
│   │   │   │           ├── drawpart.Form1.resources
│   │   │   │           ├── drawpart.Properties.Resources.resources
│   │   │   │           ├── drawpart.csproj.FileListAbsolute.txt
│   │   │   │           ├── drawpart.csproj.GenerateResource.Cache
│   │   │   │           ├── drawpart.exe
│   │   │   │           └── drawpart.pdb
│   │   │   ├── drawpart.sln
│   │   │   └── drawpart.suo
│   │   └── 批量图片格式转换
│   │       ├── PictureBatchConversion
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── PictureBatchConversion.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── Resources
│   │       │   │   ├── 图标 (163).png
│   │       │   │   ├── 图标 (23).ico
│   │       │   │   ├── 图标 (28).png
│   │       │   │   ├── 图标 (29).ico
│   │       │   │   ├── 打开.ico
│   │       │   │   ├── 保存1.ico
│   │       │   │   ├── 打开1.ico
│   │       │   │   └── 保存11.ico
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── PictureBatchConversion.exe
│   │       │   │       ├── PictureBatchConversion.pdb
│   │       │   │       └── PictureBatchConversion.vshost.exe
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── PictureBatchConversion.Form1.resources
│   │       │           ├── PictureBatchConversion.Form2.resources
│   │       │           ├── PictureBatchConversion.Properties.Resources.resources
│   │       │           ├── PictureBatchConversion.csproj.FileListAbsolute.txt
│   │       │           ├── PictureBatchConversion.csproj.GenerateResource.Cache
│   │       │           ├── PictureBatchConversion.exe
│   │       │           ├── PictureBatchConversion.pdb
│   │       │           ├── Refactor
│   │       │           └── TempPE
│   │       │               └── Properties.Resources.Designer.cs.dll
│   │       └── PictureBatchConversion.sln
│   ├── 04-报表打印
│   │   ├── 20Print
│   │   │   ├── 20Print
│   │   │   │   ├── 20Print.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 20Print.exe
│   │   │   │   │       ├── 20Print.pdb
│   │   │   │   │       └── 20Print.vshost.exe
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── 20Print.csproj.FileListAbsolute.txt
│   │   │   │           ├── 20Print.csproj.GenerateResource.Cache
│   │   │   │           ├── 20Print.exe
│   │   │   │           ├── 20Print.pdb
│   │   │   │           ├── TempPE
│   │   │   │           ├── _20Print.Form1.resources
│   │   │   │           └── _20Print.Properties.Resources.resources
│   │   │   ├── 20Print.sln
│   │   │   └── 20Print.suo
│   │   ├── 30Print
│   │   │   ├── 30Print
│   │   │   │   ├── 30Print.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 30Print.exe
│   │   │   │   │       ├── 30Print.pdb
│   │   │   │   │       └── 30Print.vshost.exe
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── 30Print.csproj.FileListAbsolute.txt
│   │   │   │           ├── 30Print.csproj.GenerateResource.Cache
│   │   │   │           ├── 30Print.exe
│   │   │   │           ├── 30Print.pdb
│   │   │   │           ├── TempPE
│   │   │   │           ├── _30Print.Form1.resources
│   │   │   │           └── _30Print.Properties.Resources.resources
│   │   │   ├── 30Print.sln
│   │   │   └── 30Print.suo
│   │   ├── AllPrint
│   │   │   ├── AllPrint
│   │   │   │   ├── AllPrint.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── AllPrint.exe
│   │   │   │   │       ├── AllPrint.pdb
│   │   │   │   │       └── AllPrint.vshost.exe
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── AllPrint.Form1.resources
│   │   │   │           ├── AllPrint.Properties.Resources.resources
│   │   │   │           ├── AllPrint.csproj.FileListAbsolute.txt
│   │   │   │           ├── AllPrint.csproj.GenerateResource.Cache
│   │   │   │           ├── AllPrint.exe
│   │   │   │           ├── AllPrint.pdb
│   │   │   │           └── TempPE
│   │   │   ├── AllPrint.sln
│   │   │   └── AllPrint.suo
│   │   ├── DBCrystalReport
│   │   │   ├── DBCrystalReport
│   │   │   │   ├── CrystalReport1.cs
│   │   │   │   ├── CrystalReport1.rpt
│   │   │   │   ├── DBCrystalReport.csproj
│   │   │   │   ├── DBCrystalReport.csproj.user
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── DBCrystalReport.exe
│   │   │   │   │       ├── DBCrystalReport.pdb
│   │   │   │   │       ├── DBCrystalReport.vshost.exe
│   │   │   │   │       └── DBCrystalReport.vshost.exe.manifest
│   │   │   │   ├── ico
│   │   │   │   │   ├── 查找.ico
│   │   │   │   │   └── 退出.ico
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── DBCrystalReport.Form1.resources
│   │   │   │           ├── DBCrystalReport.Properties.Resources.resources
│   │   │   │           ├── DBCrystalReport.csproj.FileListAbsolute.txt
│   │   │   │           ├── DBCrystalReport.csproj.GenerateResource.Cache
│   │   │   │           ├── DBCrystalReport.exe
│   │   │   │           ├── DBCrystalReport.pdb
│   │   │   │           └── TempPE
│   │   │   │               ├── CrystalReport1.cs.dll
│   │   │   │               └── CrystalReport2.cs.dll
│   │   │   ├── DBCrystalReport.sln
│   │   │   └── DBCrystalReport.suo
│   │   ├── Database
│   │   │   ├── db_04_Data.MDF
│   │   │   └── db_04_Log.LDF
│   │   ├── DesignInGoodsBill
│   │   │   ├── DesignInGoodsBill
│   │   │   │   ├── CrystalReport1.cs
│   │   │   │   ├── CrystalReport1.rpt
│   │   │   │   ├── DesignInGoodsBill.csproj
│   │   │   │   ├── DesignInGoodsBill.csproj.user
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── DesignInGoodsBill.exe
│   │   │   │   │       ├── DesignInGoodsBill.pdb
│   │   │   │   │       ├── DesignInGoodsBill.vshost.exe
│   │   │   │   │       └── DesignInGoodsBill.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── DesignInGoodsBill.Form1.resources
│   │   │   │           ├── DesignInGoodsBill.Properties.Resources.resources
│   │   │   │           ├── DesignInGoodsBill.csproj.FileListAbsolute.txt
│   │   │   │           ├── DesignInGoodsBill.csproj.GenerateResource.Cache
│   │   │   │           ├── DesignInGoodsBill.exe
│   │   │   │           ├── DesignInGoodsBill.pdb
│   │   │   │           └── TempPE
│   │   │   │               └── CrystalReport1.cs.dll
│   │   │   ├── DesignInGoodsBill.sln
│   │   │   └── DesignInGoodsBill.suo
│   │   ├── DesignReceipt
│   │   │   ├── DesignReceipt
│   │   │   │   ├── CrystalReport1.cs
│   │   │   │   ├── CrystalReport1.rpt
│   │   │   │   ├── DesignReceipt.csproj
│   │   │   │   ├── DesignReceipt.csproj.user
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── DesignReceipt.exe
│   │   │   │   │       ├── DesignReceipt.pdb
│   │   │   │   │       ├── DesignReceipt.vshost.exe
│   │   │   │   │       └── DesignReceipt.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── DesignReceipt.Form1.resources
│   │   │   │           ├── DesignReceipt.Properties.Resources.resources
│   │   │   │           ├── DesignReceipt.csproj.FileListAbsolute.txt
│   │   │   │           ├── DesignReceipt.csproj.GenerateResource.Cache
│   │   │   │           ├── DesignReceipt.exe
│   │   │   │           ├── DesignReceipt.pdb
│   │   │   │           └── TempPE
│   │   │   │               └── CrystalReport1.cs.dll
│   │   │   ├── DesignReceipt.sln
│   │   │   └── DesignReceipt.suo
│   │   ├── DesignReport
│   │   │   ├── DesignReport
│   │   │   │   ├── CrystalReport1.cs
│   │   │   │   ├── CrystalReport1.rpt
│   │   │   │   ├── DesignReport.csproj
│   │   │   │   ├── DesignReport.csproj.user
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       └── DesignReport.vshost.exe
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           └── TempPE
│   │   │   │               └── CrystalReport1.cs.dll
│   │   │   ├── DesignReport.sln
│   │   │   └── DesignReport.suo
│   │   ├── DesignStuCertificate
│   │   │   ├── DesignStuCertificate
│   │   │   │   ├── CrystalReport1.cs
│   │   │   │   ├── CrystalReport1.rpt
│   │   │   │   ├── DesignStuCertificate.csproj
│   │   │   │   ├── DesignStuCertificate.csproj.user
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── DesignStuCertificate.exe
│   │   │   │   │       ├── DesignStuCertificate.pdb
│   │   │   │   │       ├── DesignStuCertificate.vshost.exe
│   │   │   │   │       └── DesignStuCertificate.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── DesignStuCertificate.Form1.resources
│   │   │   │           ├── DesignStuCertificate.Properties.Resources.resources
│   │   │   │           ├── DesignStuCertificate.csproj.FileListAbsolute.txt
│   │   │   │           ├── DesignStuCertificate.csproj.GenerateResource.Cache
│   │   │   │           ├── DesignStuCertificate.exe
│   │   │   │           ├── DesignStuCertificate.pdb
│   │   │   │           └── TempPE
│   │   │   │               └── CrystalReport1.cs.dll
│   │   │   ├── DesignStuCertificate.sln
│   │   │   └── DesignStuCertificate.suo
│   │   ├── DesignStuResume
│   │   │   ├── DesignStuResume
│   │   │   │   ├── CrystalReport1.cs
│   │   │   │   ├── CrystalReport1.rpt
│   │   │   │   ├── DesignStuResume.csproj
│   │   │   │   ├── DesignStuResume.csproj.user
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── DesignStuResume.exe
│   │   │   │   │       ├── DesignStuResume.pdb
│   │   │   │   │       ├── DesignStuResume.vshost.exe
│   │   │   │   │       └── DesignStuResume.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── DesignStuResume.Form1.resources
│   │   │   │           ├── DesignStuResume.Properties.Resources.resources
│   │   │   │           ├── DesignStuResume.csproj.FileListAbsolute.txt
│   │   │   │           ├── DesignStuResume.csproj.GenerateResource.Cache
│   │   │   │           ├── DesignStuResume.exe
│   │   │   │           ├── DesignStuResume.pdb
│   │   │   │           └── TempPE
│   │   │   │               └── CrystalReport1.cs.dll
│   │   │   ├── DesignStuResume.sln
│   │   │   └── DesignStuResume.suo
│   │   ├── HPrint
│   │   │   ├── HPrint
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── HPrint.csproj
│   │   │   │   ├── PrintClass.cs
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── HPrint.exe
│   │   │   │   │       ├── HPrint.pdb
│   │   │   │   │       └── HPrint.vshost.exe
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── HPrint.Form1.resources
│   │   │   │           ├── HPrint.Properties.Resources.resources
│   │   │   │           ├── HPrint.csproj.FileListAbsolute.txt
│   │   │   │           ├── HPrint.csproj.GenerateResource.Cache
│   │   │   │           ├── HPrint.exe
│   │   │   │           ├── HPrint.pdb
│   │   │   │           └── TempPE
│   │   │   ├── HPrint.sln
│   │   │   └── HPrint.suo
│   │   ├── PagesPrint
│   │   │   ├── PagesPrint
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── PagesPrint.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── PagesPrint.exe
│   │   │   │   │       ├── PagesPrint.pdb
│   │   │   │   │       ├── PagesPrint.vshost.exe
│   │   │   │   │       └── PagesPrint.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── PagesPrint.Form1.resources
│   │   │   │           ├── PagesPrint.Properties.Resources.resources
│   │   │   │           ├── PagesPrint.csproj.FileListAbsolute.txt
│   │   │   │           ├── PagesPrint.csproj.GenerateResource.Cache
│   │   │   │           ├── PagesPrint.exe
│   │   │   │           ├── PagesPrint.pdb
│   │   │   │           └── TempPE
│   │   │   ├── PagesPrint.sln
│   │   │   └── PagesPrint.suo
│   │   ├── PrintDirection
│   │   │   ├── PrintDirection
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── PrintClass.cs
│   │   │   │   ├── PrintDirection.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── PrintDirection.exe
│   │   │   │   │       ├── PrintDirection.pdb
│   │   │   │   │       ├── PrintDirection.vshost.exe
│   │   │   │   │       └── PrintDirection.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── PrintDirection.Form1.resources
│   │   │   │           ├── PrintDirection.Properties.Resources.resources
│   │   │   │           ├── PrintDirection.csproj.FileListAbsolute.txt
│   │   │   │           ├── PrintDirection.csproj.GenerateResource.Cache
│   │   │   │           ├── PrintDirection.exe
│   │   │   │           ├── PrintDirection.pdb
│   │   │   │           └── TempPE
│   │   │   ├── PrintDirection.sln
│   │   │   └── PrintDirection.suo
│   │   ├── PrintEmptyCertificate
│   │   │   ├── PrintEmptyCertificate
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── PrintEmptyCertificate.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── PrintEmptyCertificate.exe
│   │   │   │   │       ├── PrintEmptyCertificate.pdb
│   │   │   │   │       └── PrintEmptyCertificate.vshost.exe
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── PrintEmptyCertificate.Form1.resources
│   │   │   │           ├── PrintEmptyCertificate.Properties.Resources.resources
│   │   │   │           ├── PrintEmptyCertificate.csproj.FileListAbsolute.txt
│   │   │   │           ├── PrintEmptyCertificate.csproj.GenerateResource.Cache
│   │   │   │           ├── PrintEmptyCertificate.exe
│   │   │   │           ├── PrintEmptyCertificate.pdb
│   │   │   │           └── TempPE
│   │   │   ├── PrintEmptyCertificate.sln
│   │   │   └── PrintEmptyCertificate.suo
│   │   ├── PrintEnvelop
│   │   │   ├── PrintEnvelop
│   │   │   │   ├── EnvelopCrystalReport.cs
│   │   │   │   ├── EnvelopCrystalReport.rpt
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── PrintEnvelop.csproj
│   │   │   │   ├── PrintEnvelop.csproj.user
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── PrintEnvelop.exe
│   │   │   │   │       ├── PrintEnvelop.pdb
│   │   │   │   │       ├── PrintEnvelop.vshost.exe
│   │   │   │   │       ├── PrintEnvelop.vshost.exe.manifest
│   │   │   │   │       └── 明日科技.bmp
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── PrintEnvelop.Form1.resources
│   │   │   │           ├── PrintEnvelop.Properties.Resources.resources
│   │   │   │           ├── PrintEnvelop.csproj.FileListAbsolute.txt
│   │   │   │           ├── PrintEnvelop.csproj.GenerateResource.Cache
│   │   │   │           ├── PrintEnvelop.exe
│   │   │   │           ├── PrintEnvelop.pdb
│   │   │   │           ├── ResolveAssemblyReference.cache
│   │   │   │           └── TempPE
│   │   │   │               ├── CrystalReport1.cs.dll
│   │   │   │               └── EnvelopCrystalReport.cs.dll
│   │   │   ├── PrintEnvelop.sln
│   │   │   └── PrintEnvelop.suo
│   │   ├── PrintGoodsInBill
│   │   │   ├── PrintGoodsInBill
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── PrintGoodsInBill.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── PrintGoodsInBill.exe
│   │   │   │   │       ├── PrintGoodsInBill.pdb
│   │   │   │   │       ├── PrintGoodsInBill.vshost.exe
│   │   │   │   │       └── PrintGoodsInBill.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── PrintGoodsInBill.Form1.resources
│   │   │   │           ├── PrintGoodsInBill.Properties.Resources.resources
│   │   │   │           ├── PrintGoodsInBill.csproj.FileListAbsolute.txt
│   │   │   │           ├── PrintGoodsInBill.csproj.GenerateResource.Cache
│   │   │   │           ├── PrintGoodsInBill.exe
│   │   │   │           ├── PrintGoodsInBill.pdb
│   │   │   │           ├── Refactor
│   │   │   │           └── TempPE
│   │   │   ├── PrintGoodsInBill.sln
│   │   │   └── PrintGoodsInBill.suo
│   │   ├── PrintGoodsOutBill
│   │   │   ├── PrintGoodsOutBill
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── PrintGoodsOutBill.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── PrintGoodsOutBill.exe
│   │   │   │   │       ├── PrintGoodsOutBill.pdb
│   │   │   │   │       ├── PrintGoodsOutBill.vshost.exe
│   │   │   │   │       └── PrintGoodsOutBill.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── PrintGoodsOutBill.Form1.resources
│   │   │   │           ├── PrintGoodsOutBill.Properties.Resources.resources
│   │   │   │           ├── PrintGoodsOutBill.csproj.FileListAbsolute.txt
│   │   │   │           ├── PrintGoodsOutBill.csproj.GenerateResource.Cache
│   │   │   │           ├── PrintGoodsOutBill.exe
│   │   │   │           ├── PrintGoodsOutBill.pdb
│   │   │   │           └── TempPE
│   │   │   ├── PrintGoodsOutBill.sln
│   │   │   └── PrintGoodsOutBill.suo
│   │   ├── PrintImage
│   │   │   ├── PrintImage
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── PrintImage.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── PrintImage.Form1.resources
│   │   │   │           ├── PrintImage.Properties.Resources.resources
│   │   │   │           ├── PrintImage.csproj.FileListAbsolute.txt
│   │   │   │           ├── PrintImage.csproj.GenerateResource.Cache
│   │   │   │           ├── PrintImage.exe
│   │   │   │           ├── PrintImage.pdb
│   │   │   │           └── TempPE
│   │   │   ├── PrintImage.sln
│   │   │   └── PrintImage.suo
│   │   ├── PrintOneCertificate
│   │   │   ├── PrintOneCertificate
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── PrintOneCertificate.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── PrintOneCertificate.exe
│   │   │   │   │       ├── PrintOneCertificate.pdb
│   │   │   │   │       ├── PrintOneCertificate.vshost.exe
│   │   │   │   │       └── photo.bmp
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── PrintOneCertificate.Form1.resources
│   │   │   │           ├── PrintOneCertificate.Properties.Resources.resources
│   │   │   │           ├── PrintOneCertificate.csproj.FileListAbsolute.txt
│   │   │   │           ├── PrintOneCertificate.csproj.GenerateResource.Cache
│   │   │   │           ├── PrintOneCertificate.exe
│   │   │   │           ├── PrintOneCertificate.pdb
│   │   │   │           └── TempPE
│   │   │   ├── PrintOneCertificate.sln
│   │   │   └── PrintOneCertificate.suo
│   │   ├── PrintRemitBill
│   │   │   ├── PrintRemitBill
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── PrintRemitBill.csproj
│   │   │   │   ├── PrintRemitBill.csproj.user
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── RemitBillCrystalReport.cs
│   │   │   │   ├── RemitBillCrystalReport.rpt
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── PrintRemitBill.exe
│   │   │   │   │       ├── PrintRemitBill.pdb
│   │   │   │   │       ├── PrintRemitBill.vshost.exe
│   │   │   │   │       └── PrintRemitBill.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── PrintRemitBill.Form1.resources
│   │   │   │           ├── PrintRemitBill.Properties.Resources.resources
│   │   │   │           ├── PrintRemitBill.csproj.FileListAbsolute.txt
│   │   │   │           ├── PrintRemitBill.csproj.GenerateResource.Cache
│   │   │   │           ├── PrintRemitBill.exe
│   │   │   │           ├── PrintRemitBill.pdb
│   │   │   │           ├── ResolveAssemblyReference.cache
│   │   │   │           └── TempPE
│   │   │   │               └── RemitBillCrystalReport.cs.dll
│   │   │   ├── PrintRemitBill.sln
│   │   │   └── PrintRemitBill.suo
│   │   ├── PrintStuCertificate
│   │   │   ├── PrintStuCertificate
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── PrintStuCertificate.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── PrintStuCertificate.exe
│   │   │   │   │       ├── PrintStuCertificate.pdb
│   │   │   │   │       ├── PrintStuCertificate.vshost.exe
│   │   │   │   │       └── PrintStuCertificate.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── PrintStuCertificate.Form1.resources
│   │   │   │           ├── PrintStuCertificate.Properties.Resources.resources
│   │   │   │           ├── PrintStuCertificate.csproj.FileListAbsolute.txt
│   │   │   │           ├── PrintStuCertificate.csproj.GenerateResource.Cache
│   │   │   │           ├── PrintStuCertificate.exe
│   │   │   │           ├── PrintStuCertificate.pdb
│   │   │   │           └── TempPE
│   │   │   ├── PrintStuCertificate.sln
│   │   │   └── PrintStuCertificate.suo
│   │   ├── PrintStuResume
│   │   │   ├── PrintStuResume
│   │   │   │   ├── PrintStuResume.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── PrintStuResume.exe
│   │   │   │   │       ├── PrintStuResume.pdb
│   │   │   │   │       ├── PrintStuResume.vshost.exe
│   │   │   │   │       ├── PrintStuResume.vshost.exe.manifest
│   │   │   │   │       └── resume.jpg
│   │   │   │   ├── frmMain.Designer.cs
│   │   │   │   ├── frmMain.cs
│   │   │   │   ├── frmMain.resx
│   │   │   │   ├── frmPrint.Designer.cs
│   │   │   │   ├── frmPrint.cs
│   │   │   │   ├── frmPrint.resx
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── PrintStuResume.Properties.Resources.resources
│   │   │   │           ├── PrintStuResume.csproj.FileListAbsolute.txt
│   │   │   │           ├── PrintStuResume.csproj.GenerateResource.Cache
│   │   │   │           ├── PrintStuResume.exe
│   │   │   │           ├── PrintStuResume.frmMain.resources
│   │   │   │           ├── PrintStuResume.frmPrint.resources
│   │   │   │           ├── PrintStuResume.pdb
│   │   │   │           ├── Refactor
│   │   │   │           └── TempPE
│   │   │   ├── PrintStuResume.sln
│   │   │   └── PrintStuResume.suo
│   │   ├── PrintText
│   │   │   ├── PrintText
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── PrintText.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── PrintText.exe
│   │   │   │   │       ├── PrintText.pdb
│   │   │   │   │       └── PrintText.vshost.exe
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── PrintText.Form1.resources
│   │   │   │           ├── PrintText.Properties.Resources.resources
│   │   │   │           ├── PrintText.csproj.FileListAbsolute.txt
│   │   │   │           ├── PrintText.csproj.GenerateResource.Cache
│   │   │   │           ├── PrintText.exe
│   │   │   │           ├── PrintText.pdb
│   │   │   │           └── TempPE
│   │   │   ├── PrintText.sln
│   │   │   └── PrintText.suo
│   │   ├── PrintTopFive
│   │   │   ├── PrintTopFive
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── PrintTopFive.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── PrintTopFive.exe
│   │   │   │   │       ├── PrintTopFive.pdb
│   │   │   │   │       └── PrintTopFive.vshost.exe
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── PrintTopFive.Form1.resources
│   │   │   │           ├── PrintTopFive.Properties.Resources.resources
│   │   │   │           ├── PrintTopFive.csproj.FileListAbsolute.txt
│   │   │   │           ├── PrintTopFive.csproj.GenerateResource.Cache
│   │   │   │           ├── PrintTopFive.exe
│   │   │   │           ├── PrintTopFive.pdb
│   │   │   │           └── TempPE
│   │   │   ├── PrintTopFive.sln
│   │   │   └── PrintTopFive.suo
│   │   ├── SetPrintRange
│   │   │   ├── SetPrintRange
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── SetPrintRange.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── SetPrintRange.exe
│   │   │   │   │       ├── SetPrintRange.pdb
│   │   │   │   │       ├── SetPrintRange.vshost.exe
│   │   │   │   │       └── SetPrintRange.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── SetPrintRange.Form1.resources
│   │   │   │           ├── SetPrintRange.Properties.Resources.resources
│   │   │   │           ├── SetPrintRange.csproj.FileListAbsolute.txt
│   │   │   │           ├── SetPrintRange.csproj.GenerateResource.Cache
│   │   │   │           ├── SetPrintRange.exe
│   │   │   │           ├── SetPrintRange.pdb
│   │   │   │           └── TempPE
│   │   │   ├── SetPrintRange.sln
│   │   │   └── SetPrintRange.suo
│   │   ├── ShowBarCode
│   │   │   ├── ShowBarCode
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── ShowBarCode.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── AxInterop.BARCODELib.dll
│   │   │   │   │       ├── Interop.BARCODELib.dll
│   │   │   │   │       ├── ShowBarCode.exe
│   │   │   │   │       ├── ShowBarCode.pdb
│   │   │   │   │       ├── ShowBarCode.vshost.exe
│   │   │   │   │       └── ShowBarCode.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── AxInterop.BARCODELib.dll
│   │   │   │           ├── Interop.BARCODELib.dll
│   │   │   │           ├── ShowBarCode.Form1.resources
│   │   │   │           ├── ShowBarCode.Properties.Resources.resources
│   │   │   │           ├── ShowBarCode.csproj.FileListAbsolute.txt
│   │   │   │           ├── ShowBarCode.csproj.GenerateResource.Cache
│   │   │   │           ├── ShowBarCode.csproj.ResolveComReference.cache
│   │   │   │           ├── ShowBarCode.exe
│   │   │   │           ├── ShowBarCode.pdb
│   │   │   │           └── TempPE
│   │   │   ├── ShowBarCode.sln
│   │   │   └── ShowBarCode.suo
│   │   ├── ShowCReport
│   │   │   ├── ShowCReport
│   │   │   │   ├── CrystalReport1.cs
│   │   │   │   ├── CrystalReport1.rpt
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── ShowCReport.csproj
│   │   │   │   ├── ShowCReport.csproj.user
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── ShowCReport.exe
│   │   │   │   │       ├── ShowCReport.pdb
│   │   │   │   │       ├── ShowCReport.vshost.exe
│   │   │   │   │       └── ShowCReport.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── ShowCReport.Form1.resources
│   │   │   │           ├── ShowCReport.Properties.Resources.resources
│   │   │   │           ├── ShowCReport.csproj.FileListAbsolute.txt
│   │   │   │           ├── ShowCReport.csproj.GenerateResource.Cache
│   │   │   │           ├── ShowCReport.exe
│   │   │   │           ├── ShowCReport.pdb
│   │   │   │           └── TempPE
│   │   │   │               └── CrystalReport1.cs.dll
│   │   │   ├── ShowCReport.sln
│   │   │   └── ShowCReport.suo
│   │   ├── VPrint
│   │   │   ├── VPrint
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── PrintClass.cs
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── VPrint.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── VPrint.exe
│   │   │   │   │       ├── VPrint.pdb
│   │   │   │   │       └── VPrint.vshost.exe
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── TempPE
│   │   │   │           ├── VPrint.Form1.resources
│   │   │   │           ├── VPrint.Properties.Resources.resources
│   │   │   │           ├── VPrint.csproj.FileListAbsolute.txt
│   │   │   │           ├── VPrint.csproj.GenerateResource.Cache
│   │   │   │           ├── VPrint.exe
│   │   │   │           └── VPrint.pdb
│   │   │   ├── VPrint.sln
│   │   │   └── VPrint.suo
│   │   └── 打印条形码
│   │       ├── BarCode
│   │       │   ├── BarCode.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── SystemSet.ini
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── AxInterop.BARCODELib.dll
│   │       │   │       ├── BarCode.exe
│   │       │   │       ├── BarCode.pdb
│   │       │   │       ├── BarCode.vshost.exe
│   │       │   │       ├── BarCode.vshost.exe.manifest
│   │       │   │       └── Interop.BARCODELib.dll
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── AxInterop.BARCODELib.dll
│   │       │           ├── BarCode.Form1.resources
│   │       │           ├── BarCode.Properties.Resources.resources
│   │       │           ├── BarCode.csproj.FileListAbsolute.txt
│   │       │           ├── BarCode.csproj.GenerateResource.Cache
│   │       │           ├── BarCode.csproj.ResolveComReference.cache
│   │       │           ├── BarCode.exe
│   │       │           ├── BarCode.pdb
│   │       │           ├── Interop.BARCODELib.dll
│   │       │           ├── Refactor
│   │       │           └── TempPE
│   │       ├── BarCode.sln
│   │       └── BarCode.suo
│   ├── 06-系统操作
│   │   ├── CPU内存使用率
│   │   │   ├── CPU_Detect
│   │   │   │   ├── CPU_Detect.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── CPU_Detect.exe
│   │   │   │   │       ├── CPU_Detect.pdb
│   │   │   │   │       ├── CPU_Detect.vshost.exe
│   │   │   │   │       └── CPU_Detect.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── CPU_Detect.Form1.resources
│   │   │   │           ├── CPU_Detect.Properties.Resources.resources
│   │   │   │           ├── CPU_Detect.csproj.FileListAbsolute.txt
│   │   │   │           ├── CPU_Detect.csproj.GenerateResource.Cache
│   │   │   │           ├── CPU_Detect.exe
│   │   │   │           ├── CPU_Detect.pdb
│   │   │   │           ├── Refactor
│   │   │   │           └── TempPE
│   │   │   ├── CPU_Detect.sln
│   │   │   └── CPU_Detect.suo
│   │   ├── 读写INI
│   │   │   ├── ReadINI
│   │   │   │   ├── ReadINI
│   │   │   │   │   ├── Form1.Designer.cs
│   │   │   │   │   ├── Form1.cs
│   │   │   │   │   ├── Form1.resx
│   │   │   │   │   ├── Program.cs
│   │   │   │   │   ├── Properties
│   │   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   │   ├── Resources.resx
│   │   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   │   └── Settings.settings
│   │   │   │   │   ├── ReadINI.csproj
│   │   │   │   │   ├── Test.ini
│   │   │   │   │   ├── bin
│   │   │   │   │   │   └── Debug
│   │   │   │   │   │       ├── ReadINI.exe
│   │   │   │   │   │       ├── ReadINI.pdb
│   │   │   │   │   │       ├── ReadINI.vshost.exe
│   │   │   │   │   │       ├── ReadINI.vshost.exe.manifest
│   │   │   │   │   │       └── Test.ini
│   │   │   │   │   └── obj
│   │   │   │   │       └── Debug
│   │   │   │   │           ├── ReadINI.Form1.resources
│   │   │   │   │           ├── ReadINI.Properties.Resources.resources
│   │   │   │   │           ├── ReadINI.csproj.FileListAbsolute.txt
│   │   │   │   │           ├── ReadINI.csproj.GenerateResource.Cache
│   │   │   │   │           ├── ReadINI.exe
│   │   │   │   │           ├── ReadINI.pdb
│   │   │   │   │           └── TempPE
│   │   │   │   ├── ReadINI.sln
│   │   │   │   └── ReadINI.suo
│   │   │   └── WriteINI
│   │   │       ├── WriteINI
│   │   │       │   ├── Form1.Designer.cs
│   │   │       │   ├── Form1.cs
│   │   │       │   ├── Form1.resx
│   │   │       │   ├── Program.cs
│   │   │       │   ├── Properties
│   │   │       │   │   ├── AssemblyInfo.cs
│   │   │       │   │   ├── Resources.Designer.cs
│   │   │       │   │   ├── Resources.resx
│   │   │       │   │   ├── Settings.Designer.cs
│   │   │       │   │   └── Settings.settings
│   │   │       │   ├── Test.ini
│   │   │       │   ├── WriteINI.csproj
│   │   │       │   ├── bin
│   │   │       │   │   └── Debug
│   │   │       │   │       ├── WriteINI.exe
│   │   │       │   │       ├── WriteINI.pdb
│   │   │       │   │       ├── WriteINI.vshost.exe
│   │   │       │   │       └── WriteINI.vshost.exe.manifest
│   │   │       │   └── obj
│   │   │       │       └── Debug
│   │   │       │           ├── TempPE
│   │   │       │           ├── WriteINI.Form1.resources
│   │   │       │           ├── WriteINI.Properties.Resources.resources
│   │   │       │           ├── WriteINI.csproj.FileListAbsolute.txt
│   │   │       │           ├── WriteINI.csproj.GenerateResource.Cache
│   │   │       │           ├── WriteINI.exe
│   │   │       │           └── WriteINI.pdb
│   │   │       ├── WriteINI.sln
│   │   │       └── WriteINI.suo
│   │   ├── 定时关机
│   │   │   ├── TimeCloseComputer
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── TimeCloseComputer.csproj
│   │   │   │   ├── TimeCloseComputer.csproj.user
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── TimeCloseComputer.exe
│   │   │   │   │       ├── TimeCloseComputer.pdb
│   │   │   │   │       ├── TimeCloseComputer.vshost.exe
│   │   │   │   │       ├── TimeCloseComputer.vshost.exe.manifest
│   │   │   │   │       └── db.mdb
│   │   │   │   ├── db.mdb
│   │   │   │   ├── false.jpg
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Refactor
│   │   │   │   │       ├── TempPE
│   │   │   │   │       │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   │       ├── TimeCloseComputer.Form1.resources
│   │   │   │   │       ├── TimeCloseComputer.Properties.Resources.resources
│   │   │   │   │       ├── TimeCloseComputer.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── TimeCloseComputer.csproj.GenerateResource.Cache
│   │   │   │   │       ├── TimeCloseComputer.exe
│   │   │   │   │       └── TimeCloseComputer.pdb
│   │   │   │   ├── true.jpg
│   │   │   │   ├── 图标 (18).ico
│   │   │   │   ├── 图标 (187).ico
│   │   │   │   └── 图标 (93).ico
│   │   │   └── TimeCloseComputer.sln
│   │   ├── 虚拟键盘
│   │   │   ├── HookEx
│   │   │   │   ├── EventSet.cs
│   │   │   │   ├── HookEx.csproj
│   │   │   │   ├── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── UserActivityHook.cs
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── HookEx.dll
│   │   │   │   │       └── HookEx.pdb
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── HookEx.csproj.FileListAbsolute.txt
│   │   │   │           ├── HookEx.dll
│   │   │   │           ├── HookEx.pdb
│   │   │   │           └── TempPE
│   │   │   ├── 键盘(1).jpg
│   │   │   ├── 虚拟键盘
│   │   │   │   ├── FecitButton.Designer.cs
│   │   │   │   ├── FecitButton.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── KeyboardConstaint.cs
│   │   │   │   ├── NativeMethods.cs
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── Resources
│   │   │   │   │   └── 键盘(1).jpg
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── HookEx.dll
│   │   │   │   │       ├── HookEx.pdb
│   │   │   │   │       ├── 虚拟键盘.exe
│   │   │   │   │       ├── 虚拟键盘.pdb
│   │   │   │   │       ├── 虚拟键盘.vshost.exe
│   │   │   │   │       └── 虚拟键盘.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Refactor
│   │   │   │   │       ├── ResolveAssemblyReference.cache
│   │   │   │   │       ├── TempPE
│   │   │   │   │       │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   │       ├── 虚拟键盘.Form1.resources
│   │   │   │   │       ├── 虚拟键盘.Properties.Resources.resources
│   │   │   │   │       ├── 虚拟键盘.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 虚拟键盘.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 虚拟键盘.exe
│   │   │   │   │       └── 虚拟键盘.pdb
│   │   │   │   └── 虚拟键盘.csproj
│   │   │   ├── 虚拟键盘.sln
│   │   │   └── 虚拟键盘.suo
│   │   ├── 多功能键盘
│   │   │   ├── 多功能键盘
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── HOOK.cs
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 多功能键盘.exe
│   │   │   │   │       ├── 多功能键盘.pdb
│   │   │   │   │       ├── 多功能键盘.vshost.exe
│   │   │   │   │       └── 多功能键盘.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── TempPE
│   │   │   │   │       ├── 多功能键盘.Form1.resources
│   │   │   │   │       ├── 多功能键盘.Properties.Resources.resources
│   │   │   │   │       ├── 多功能键盘.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 多功能键盘.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 多功能键盘.exe
│   │   │   │   │       └── 多功能键盘.pdb
│   │   │   │   └── 多功能键盘.csproj
│   │   │   ├── 多功能键盘.sln
│   │   │   └── 多功能键盘.suo
│   │   ├── 屏幕放大镜
│   │   │   ├── ScreenBlowupGlass
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── ScreenBlowupGlass.csproj
│   │   │   │   ├── bg.bmp
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── ScreenBlowupGlass.exe
│   │   │   │   │       ├── ScreenBlowupGlass.pdb
│   │   │   │   │       ├── ScreenBlowupGlass.vshost.exe
│   │   │   │   │       └── ScreenBlowupGlass.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Refactor
│   │   │   │   │       ├── ScreenBlowupGlass.Form1.resources
│   │   │   │   │       ├── ScreenBlowupGlass.Properties.Resources.resources
│   │   │   │   │       ├── ScreenBlowupGlass.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── ScreenBlowupGlass.csproj.GenerateResource.Cache
│   │   │   │   │       ├── ScreenBlowupGlass.exe
│   │   │   │   │       ├── ScreenBlowupGlass.pdb
│   │   │   │   │       └── TempPE
│   │   │   │   │           └── Properties.Resources.Designer.cs.dll
│   │   │   │   └── 图标.ico
│   │   │   ├── ScreenBlowupGlass.sln
│   │   │   └── ScreenBlowupGlass.suo
│   │   ├── 左右键切换
│   │   │   ├── LeftRightSwitch
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── LeftRightSwitch.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── LeftRightSwitch.exe
│   │   │   │   │       ├── LeftRightSwitch.pdb
│   │   │   │   │       ├── LeftRightSwitch.vshost.exe
│   │   │   │   │       └── LeftRightSwitch.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── LeftRightSwitch.Form1.resources
│   │   │   │           ├── LeftRightSwitch.Properties.Resources.resources
│   │   │   │           ├── LeftRightSwitch.csproj.FileListAbsolute.txt
│   │   │   │           ├── LeftRightSwitch.csproj.GenerateResource.Cache
│   │   │   │           ├── LeftRightSwitch.exe
│   │   │   │           ├── LeftRightSwitch.pdb
│   │   │   │           └── TempPE
│   │   │   ├── LeftRightSwitch.sln
│   │   │   └── LeftRightSwitch.suo
│   │   ├── 显示器控制
│   │   │   ├── DisplayControl
│   │   │   │   ├── DisplayControl.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── DisplayControl.exe
│   │   │   │   │       ├── DisplayControl.pdb
│   │   │   │   │       ├── DisplayControl.vshost.exe
│   │   │   │   │       └── DisplayControl.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── DisplayControl.Form1.resources
│   │   │   │   │       ├── DisplayControl.Properties.Resources.resources
│   │   │   │   │       ├── DisplayControl.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── DisplayControl.csproj.GenerateResource.Cache
│   │   │   │   │       ├── DisplayControl.exe
│   │   │   │   │       ├── DisplayControl.pdb
│   │   │   │   │       ├── Refactor
│   │   │   │   │       └── TempPE
│   │   │   │   └── 图标 (22).ico
│   │   │   ├── DisplayControl.sln
│   │   │   └── DisplayControl.suo
│   │   ├── 系统挂机锁
│   │   │   ├── SystemLock
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Form2.Designer.cs
│   │   │   │   ├── Form2.cs
│   │   │   │   ├── Form2.resx
│   │   │   │   ├── Form3.Designer.cs
│   │   │   │   ├── Form3.cs
│   │   │   │   ├── Form3.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── SystemLock.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── SystemLock.exe
│   │   │   │   │       ├── SystemLock.pdb
│   │   │   │   │       ├── SystemLock.vshost.exe
│   │   │   │   │       └── SystemLock.vshost.exe.manifest
│   │   │   │   ├── lock.ico
│   │   │   │   ├── myHook.cs
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Refactor
│   │   │   │   │       ├── SystemLock.Form1.resources
│   │   │   │   │       ├── SystemLock.Form2.resources
│   │   │   │   │       ├── SystemLock.Form3.resources
│   │   │   │   │       ├── SystemLock.Properties.Resources.resources
│   │   │   │   │       ├── SystemLock.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── SystemLock.csproj.GenerateResource.Cache
│   │   │   │   │       ├── SystemLock.exe
│   │   │   │   │       ├── SystemLock.pdb
│   │   │   │   │       └── TempPE
│   │   │   │   │           └── Properties.Resources.Designer.cs.dll
│   │   │   │   ├── screen.jpg
│   │   │   │   └── 图标 (93).ico
│   │   │   ├── SystemLock.sln
│   │   │   └── SystemLock.suo
│   │   ├── 进程管理器
│   │   │   ├── CourseManage
│   │   │   │   ├── CourseManage.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── CourseManage.exe
│   │   │   │   │       ├── CourseManage.pdb
│   │   │   │   │       ├── CourseManage.vshost.exe
│   │   │   │   │       └── CourseManage.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── CourseManage.Form1.resources
│   │   │   │           ├── CourseManage.Properties.Resources.resources
│   │   │   │           ├── CourseManage.csproj.FileListAbsolute.txt
│   │   │   │           ├── CourseManage.csproj.GenerateResource.Cache
│   │   │   │           ├── CourseManage.exe
│   │   │   │           ├── CourseManage.pdb
│   │   │   │           ├── Refactor
│   │   │   │           └── TempPE
│   │   │   ├── CourseManage.sln
│   │   │   └── CourseManage.suo
│   │   ├── 鼠标设置器
│   │   │   ├── 鼠标设置器
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Image
│   │   │   │   │   ├── 移动.bmp
│   │   │   │   │   ├── 文件夹.bmp
│   │   │   │   │   ├── 鼠标右键.bmp
│   │   │   │   │   └── 鼠标左键.bmp
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 鼠标设置器.exe
│   │   │   │   │       ├── 鼠标设置器.pdb
│   │   │   │   │       ├── 鼠标设置器.vshost.exe
│   │   │   │   │       └── 鼠标设置器.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── TempPE
│   │   │   │   │       │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   │       ├── 鼠标设置器.Form1.resources
│   │   │   │   │       ├── 鼠标设置器.Properties.Resources.resources
│   │   │   │   │       ├── 鼠标设置器.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 鼠标设置器.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 鼠标设置器.exe
│   │   │   │   │       └── 鼠标设置器.pdb
│   │   │   │   └── 鼠标设置器.csproj
│   │   │   ├── 鼠标设置器.sln
│   │   │   └── 鼠标设置器.suo
│   │   ├── 动态图标显示
│   │   │   ├── DynamicTaskStock
│   │   │   │   ├── 1.ico
│   │   │   │   ├── 2.ico
│   │   │   │   ├── 3.ico
│   │   │   │   ├── DynamicTaskStock.csproj
│   │   │   │   ├── DynamicTaskStock.csproj.user
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── DynamicTaskStock.exe
│   │   │   │   │       ├── DynamicTaskStock.pdb
│   │   │   │   │       ├── DynamicTaskStock.vshost.exe
│   │   │   │   │       └── DynamicTaskStock.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── DynamicTaskStock.Form1.resources
│   │   │   │           ├── DynamicTaskStock.Properties.Resources.resources
│   │   │   │           ├── DynamicTaskStock.csproj.FileListAbsolute.txt
│   │   │   │           ├── DynamicTaskStock.csproj.GenerateResource.Cache
│   │   │   │           ├── DynamicTaskStock.exe
│   │   │   │           ├── DynamicTaskStock.pdb
│   │   │   │           ├── Refactor
│   │   │   │           └── TempPE
│   │   │   │               └── Properties.Resources.Designer.cs.dll
│   │   │   ├── DynamicTaskStock.sln
│   │   │   └── DynamicTaskStock.suo
│   │   ├── 半角全角转换
│   │   │   ├── SBCorDBC
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── SBCorDBC.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── SBCorDBC.exe
│   │   │   │   │       ├── SBCorDBC.pdb
│   │   │   │   │       ├── SBCorDBC.vshost.exe
│   │   │   │   │       └── SBCorDBC.vshost.exe.manifest
│   │   │   │   ├── controlIme.cs
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── SBCorDBC.Form1.resources
│   │   │   │           ├── SBCorDBC.Properties.Resources.resources
│   │   │   │           ├── SBCorDBC.csproj.FileListAbsolute.txt
│   │   │   │           ├── SBCorDBC.csproj.GenerateResource.Cache
│   │   │   │           ├── SBCorDBC.exe
│   │   │   │           ├── SBCorDBC.pdb
│   │   │   │           └── TempPE
│   │   │   └── SBCorDBC.sln
│   │   ├── 启动项管理器
│   │   │   ├── RunManage
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── RunManage.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── RunManage.exe
│   │   │   │   │       ├── RunManage.pdb
│   │   │   │   │       ├── RunManage.vshost.exe
│   │   │   │   │       └── RunManage.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── RunManage.Form1.resources
│   │   │   │           ├── RunManage.Properties.Resources.resources
│   │   │   │           ├── RunManage.csproj.FileListAbsolute.txt
│   │   │   │           ├── RunManage.csproj.GenerateResource.Cache
│   │   │   │           ├── RunManage.exe
│   │   │   │           ├── RunManage.pdb
│   │   │   │           └── TempPE
│   │   │   ├── RunManage.sln
│   │   │   └── RunManage.suo
│   │   ├── 屏蔽鼠标按键
│   │   │   ├── NullificationMouse
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── MouseHook.cs
│   │   │   │   ├── NullificationMouse.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── NullificationMouse.exe
│   │   │   │   │       ├── NullificationMouse.pdb
│   │   │   │   │       ├── NullificationMouse.vshost.exe
│   │   │   │   │       └── NullificationMouse.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── NullificationMouse.Form1.resources
│   │   │   │           ├── NullificationMouse.Properties.Resources.resources
│   │   │   │           ├── NullificationMouse.csproj.FileListAbsolute.txt
│   │   │   │           ├── NullificationMouse.csproj.GenerateResource.Cache
│   │   │   │           ├── NullificationMouse.exe
│   │   │   │           ├── NullificationMouse.pdb
│   │   │   │           ├── Refactor
│   │   │   │           └── TempPE
│   │   │   ├── NullificationMouse.sln
│   │   │   └── NullificationMouse.suo
│   │   ├── 设置桌片壁纸
│   │   │   ├── APIdesktop
│   │   │   │   ├── APIdesktop.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Form2.Designer.cs
│   │   │   │   ├── Form2.cs
│   │   │   │   ├── Form2.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bg2.png
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── APIdesktop.exe
│   │   │   │   │       ├── APIdesktop.pdb
│   │   │   │   │       ├── APIdesktop.vshost.exe
│   │   │   │   │       └── APIdesktop.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── APIdesktop.Form1.resources
│   │   │   │   │       ├── APIdesktop.Form2.resources
│   │   │   │   │       ├── APIdesktop.Properties.Resources.resources
│   │   │   │   │       ├── APIdesktop.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── APIdesktop.csproj.GenerateResource.Cache
│   │   │   │   │       ├── APIdesktop.exe
│   │   │   │   │       ├── APIdesktop.pdb
│   │   │   │   │       ├── Refactor
│   │   │   │   │       └── TempPE
│   │   │   │   │           └── Properties.Resources.Designer.cs.dll
│   │   │   │   ├── 图标 (190).ico
│   │   │   │   ├── 图标 (199).ico
│   │   │   │   ├── 图标 (22).ico
│   │   │   │   ├── 图标 (59).png
│   │   │   │   ├── 图标 (66).png
│   │   │   │   ├── 图标 (8).ico
│   │   │   │   └── 图标 (96).ico
│   │   │   ├── APIdesktop.sln
│   │   │   └── APIdesktop.suo
│   │   ├── 设置系统时间
│   │   │   ├── SetTime
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── SetTime.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── SetTime.exe
│   │   │   │   │       ├── SetTime.pdb
│   │   │   │   │       ├── SetTime.vshost.exe
│   │   │   │   │       └── SetTime.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── Refactor
│   │   │   │           ├── SetTime.Form1.resources
│   │   │   │           ├── SetTime.Properties.Resources.resources
│   │   │   │           ├── SetTime.csproj.FileListAbsolute.txt
│   │   │   │           ├── SetTime.csproj.GenerateResource.Cache
│   │   │   │           ├── SetTime.exe
│   │   │   │           ├── SetTime.pdb
│   │   │   │           └── TempPE
│   │   │   ├── SetTime.sln
│   │   │   └── SetTime.suo
│   │   ├── 设置鼠标样式
│   │   │   ├── ActMouse
│   │   │   │   ├── ActMouse.csproj
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Image
│   │   │   │   │   └── mouse.ani
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── ActMouse.exe
│   │   │   │   │       ├── ActMouse.pdb
│   │   │   │   │       ├── ActMouse.vshost.exe
│   │   │   │   │       └── ActMouse.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── ActMouse.Form1.resources
│   │   │   │           ├── ActMouse.Properties.Resources.resources
│   │   │   │           ├── ActMouse.csproj.FileListAbsolute.txt
│   │   │   │           ├── ActMouse.csproj.GenerateResource.Cache
│   │   │   │           ├── ActMouse.exe
│   │   │   │           ├── ActMouse.pdb
│   │   │   │           └── TempPE
│   │   │   ├── ActMouse.sln
│   │   │   └── ActMouse.suo
│   │   ├── 身份证验证器
│   │   │   ├── ValidateIDcard
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── ValidateIDcard.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── ValidateIDcard.exe
│   │   │   │   │       ├── ValidateIDcard.pdb
│   │   │   │   │       ├── ValidateIDcard.vshost.exe
│   │   │   │   │       └── ValidateIDcard.vshost.exe.manifest
│   │   │   │   ├── db.mdb
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── Refactor
│   │   │   │           ├── TempPE
│   │   │   │           ├── ValidateIDcard.Form1.resources
│   │   │   │           ├── ValidateIDcard.Properties.Resources.resources
│   │   │   │           ├── ValidateIDcard.csproj.FileListAbsolute.txt
│   │   │   │           ├── ValidateIDcard.csproj.GenerateResource.Cache
│   │   │   │           ├── ValidateIDcard.exe
│   │   │   │           └── ValidateIDcard.pdb
│   │   │   ├── ValidateIDcard.sln
│   │   │   └── ValidateIDcard.suo
│   │   ├── 音乐风景壁纸
│   │   │   ├── MusicViewDesk
│   │   │   │   ├── AboutBox1.Designer.cs
│   │   │   │   ├── AboutBox1.cs
│   │   │   │   ├── AboutBox1.resx
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Form2.Designer.cs
│   │   │   │   ├── Form2.cs
│   │   │   │   ├── Form2.resx
│   │   │   │   ├── MusicViewDesk.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── Setup.ini
│   │   │   │   ├── baseClass.cs
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── AxInterop.WMPLib.dll
│   │   │   │   │       ├── Interop.WMPLib.dll
│   │   │   │   │       ├── MusicViewDesk.exe
│   │   │   │   │       ├── MusicViewDesk.pdb
│   │   │   │   │       ├── MusicViewDesk.vshost.exe
│   │   │   │   │       └── MusicViewDesk.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── AxInterop.WMPLib.dll
│   │   │   │   │       ├── Interop.WMPLib.dll
│   │   │   │   │       ├── MusicViewDesk.AboutBox1.resources
│   │   │   │   │       ├── MusicViewDesk.Form1.resources
│   │   │   │   │       ├── MusicViewDesk.Form2.resources
│   │   │   │   │       ├── MusicViewDesk.Properties.Resources.resources
│   │   │   │   │       ├── MusicViewDesk.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── MusicViewDesk.csproj.GenerateResource.Cache
│   │   │   │   │       ├── MusicViewDesk.csproj.ResolveComReference.cache
│   │   │   │   │       ├── MusicViewDesk.exe
│   │   │   │   │       ├── MusicViewDesk.pdb
│   │   │   │   │       ├── Refactor
│   │   │   │   │       └── TempPE
│   │   │   │   ├── 图标 (100).png
│   │   │   │   ├── 图标 (18).ico
│   │   │   │   ├── 图标 (22).ico
│   │   │   │   └── 图标 (6).ico
│   │   │   └── MusicViewDesk.sln
│   │   ├── 自定义动画鼠标
│   │   │   ├── 自定义动画鼠标
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Image
│   │   │   │   │   ├── 01.cur
│   │   │   │   │   ├── 02.cur
│   │   │   │   │   ├── 03.cur
│   │   │   │   │   ├── 4.cur
│   │   │   │   │   ├── 5.cur
│   │   │   │   │   ├── 6.cur
│   │   │   │   │   └── hand.cur
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 0081.ani
│   │   │   │   │       ├── My.png
│   │   │   │   │       ├── 自定义动画鼠标.exe
│   │   │   │   │       ├── 自定义动画鼠标.pdb
│   │   │   │   │       ├── 自定义动画鼠标.vshost.exe
│   │   │   │   │       └── 自定义动画鼠标.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Refactor
│   │   │   │   │       ├── TempPE
│   │   │   │   │       │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   │       ├── 自定义动画鼠标.Form1.resources
│   │   │   │   │       ├── 自定义动画鼠标.Properties.Resources.resources
│   │   │   │   │       ├── 自定义动画鼠标.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 自定义动画鼠标.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 自定义动画鼠标.exe
│   │   │   │   │       └── 自定义动画鼠标.pdb
│   │   │   │   └── 自定义动画鼠标.csproj
│   │   │   ├── 自定义动画鼠标.sln
│   │   │   └── 自定义动画鼠标.suo
│   │   ├── 数字大小写转换器
│   │   │   ├── numberConvert
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── numberConvert.exe
│   │   │   │   │       ├── numberConvert.pdb
│   │   │   │   │       ├── numberConvert.vshost.exe
│   │   │   │   │       └── numberConvert.vshost.exe.manifest
│   │   │   │   ├── numberConvert.csproj
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── Refactor
│   │   │   │           ├── TempPE
│   │   │   │           ├── numberConvert.Form1.resources
│   │   │   │           ├── numberConvert.Form2.resources
│   │   │   │           ├── numberConvert.Properties.Resources.resources
│   │   │   │           ├── numberConvert.csproj.FileListAbsolute.txt
│   │   │   │           ├── numberConvert.csproj.GenerateResource.Cache
│   │   │   │           ├── numberConvert.exe
│   │   │   │           └── numberConvert.pdb
│   │   │   ├── numberConvert.sln
│   │   │   └── numberConvert.suo
│   │   ├── 设置和屏蔽系统热键
│   │   │   ├── 热键
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── HOOK.cs
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 热键.exe
│   │   │   │   │       ├── 热键.pdb
│   │   │   │   │       ├── 热键.vshost.exe
│   │   │   │   │       └── 热键.vshost.exe.manifest
│   │   │   │   ├── obj
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── TempPE
│   │   │   │   │       ├── 热键.Properties.Resources.resources
│   │   │   │   │       ├── 热键.csproj.FileListAbsolute.txt
│   │   │   │   │       ├── 热键.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 热键.exe
│   │   │   │   │       ├── 热键.pdb
│   │   │   │   │       ├── 设置和屏蔽系统热键.Form1.resources
│   │   │   │   │       ├── 设置和屏蔽系统热键.csproj.FileListAbsolute.txt
│   │   │   │   │       └── 设置和屏蔽系统热键.csproj.GenerateResource.Cache
│   │   │   │   └── 热键.csproj
│   │   │   ├── 热键.sln
│   │   │   └── 热键.suo
│   │   └── 用键盘控制窗体的移动
│   │       ├── ControlFormMove
│   │       │   ├── ControlFormMove.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── ControlFormMove.exe
│   │       │   │       ├── ControlFormMove.pdb
│   │       │   │       ├── ControlFormMove.vshost.exe
│   │       │   │       └── ControlFormMove.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── ControlFormMove.Form1.resources
│   │       │           ├── ControlFormMove.Properties.Resources.resources
│   │       │           ├── ControlFormMove.csproj.FileListAbsolute.txt
│   │       │           ├── ControlFormMove.csproj.GenerateResource.Cache
│   │       │           ├── ControlFormMove.exe
│   │       │           ├── ControlFormMove.pdb
│   │       │           └── TempPE
│   │       ├── ControlFormMove.sln
│   │       └── ControlFormMove.suo
│   └── 07-文件处理
│       ├── WordToHtml
│       │   ├── WordToHtml
│       │   │   ├── Form1.Designer.cs
│       │   │   ├── Form1.cs
│       │   │   ├── Form1.resx
│       │   │   ├── Program.cs
│       │   │   ├── Properties
│       │   │   │   ├── AssemblyInfo.cs
│       │   │   │   ├── Resources.Designer.cs
│       │   │   │   ├── Resources.resx
│       │   │   │   ├── Settings.Designer.cs
│       │   │   │   └── Settings.settings
│       │   │   ├── WordToHtml.csproj
│       │   │   ├── WordToHtml.csproj.user
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── Interop.Office.dll
│       │   │   │       ├── Interop.VBIDE.dll
│       │   │   │       ├── Interop.Word.dll
│       │   │   │       ├── WordToHtml.exe
│       │   │   │       ├── WordToHtml.pdb
│       │   │   │       ├── WordToHtml.vshost.exe
│       │   │   │       └── WordToHtml.vshost.exe.manifest
│       │   │   └── obj
│       │   │       └── Debug
│       │   │           ├── Interop.Office.dll
│       │   │           ├── Interop.VBIDE.dll
│       │   │           ├── Interop.Word.dll
│       │   │           ├── Refactor
│       │   │           ├── TempPE
│       │   │           ├── WordToHtml.Form1.resources
│       │   │           ├── WordToHtml.Properties.Resources.resources
│       │   │           ├── WordToHtml.csproj.FileListAbsolute.txt
│       │   │           ├── WordToHtml.csproj.GenerateResource.Cache
│       │   │           ├── WordToHtml.csproj.ResolveComReference.cache
│       │   │           ├── WordToHtml.exe
│       │   │           └── WordToHtml.pdb
│       │   ├── WordToHtml.sln
│       │   └── WordToHtml.suo
│       ├── WordToRtf
│       │   ├── WordToRtf
│       │   │   ├── Form1.Designer.cs
│       │   │   ├── Form1.cs
│       │   │   ├── Form1.resx
│       │   │   ├── Program.cs
│       │   │   ├── Properties
│       │   │   │   ├── AssemblyInfo.cs
│       │   │   │   ├── Resources.Designer.cs
│       │   │   │   ├── Resources.resx
│       │   │   │   ├── Settings.Designer.cs
│       │   │   │   └── Settings.settings
│       │   │   ├── WordToRtf.csproj
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── Interop.Office.dll
│       │   │   │       ├── Interop.VBIDE.dll
│       │   │   │       ├── Interop.Word.dll
│       │   │   │       ├── WordToRtf.exe
│       │   │   │       ├── WordToRtf.pdb
│       │   │   │       ├── WordToRtf.vshost.exe
│       │   │   │       └── WordToRtf.vshost.exe.manifest
│       │   │   └── obj
│       │   │       └── Debug
│       │   │           ├── Interop.Office.dll
│       │   │           ├── Interop.VBIDE.dll
│       │   │           ├── Interop.Word.dll
│       │   │           ├── TempPE
│       │   │           ├── WordToRtf.Form1.resources
│       │   │           ├── WordToRtf.Properties.Resources.resources
│       │   │           ├── WordToRtf.csproj.FileListAbsolute.txt
│       │   │           ├── WordToRtf.csproj.GenerateResource.Cache
│       │   │           ├── WordToRtf.csproj.ResolveComReference.cache
│       │   │           ├── WordToRtf.exe
│       │   │           └── WordToRtf.pdb
│       │   ├── WordToRtf.sln
│       │   └── WordToRtf.suo
│       ├── WordToText
│       │   ├── WordToText
│       │   │   ├── Form1.Designer.cs
│       │   │   ├── Form1.cs
│       │   │   ├── Form1.resx
│       │   │   ├── Program.cs
│       │   │   ├── Properties
│       │   │   │   ├── AssemblyInfo.cs
│       │   │   │   ├── Resources.Designer.cs
│       │   │   │   ├── Resources.resx
│       │   │   │   ├── Settings.Designer.cs
│       │   │   │   └── Settings.settings
│       │   │   ├── WordToText.csproj
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── Interop.Office.dll
│       │   │   │       ├── Interop.VBIDE.dll
│       │   │   │       ├── Interop.Word.dll
│       │   │   │       ├── WordToText.exe
│       │   │   │       ├── WordToText.pdb
│       │   │   │       ├── WordToText.vshost.exe
│       │   │   │       └── WordToText.vshost.exe.manifest
│       │   │   └── obj
│       │   │       └── Debug
│       │   │           ├── Interop.Office.dll
│       │   │           ├── Interop.VBIDE.dll
│       │   │           ├── Interop.Word.dll
│       │   │           ├── TempPE
│       │   │           ├── WordToText.Form1.resources
│       │   │           ├── WordToText.Properties.Resources.resources
│       │   │           ├── WordToText.csproj.FileListAbsolute.txt
│       │   │           ├── WordToText.csproj.GenerateResource.Cache
│       │   │           ├── WordToText.csproj.ResolveComReference.cache
│       │   │           ├── WordToText.exe
│       │   │           └── WordToText.pdb
│       │   ├── WordToText.sln
│       │   └── WordToText.suo
│       ├── 操作INI文件
│       │   ├── INIFileOperate
│       │   │   ├── Form1.Designer.cs
│       │   │   ├── Form1.cs
│       │   │   ├── Form1.resx
│       │   │   ├── INIFileOperate.csproj
│       │   │   ├── Program.cs
│       │   │   ├── Properties
│       │   │   │   ├── AssemblyInfo.cs
│       │   │   │   ├── Resources.Designer.cs
│       │   │   │   ├── Resources.resx
│       │   │   │   ├── Settings.Designer.cs
│       │   │   │   └── Settings.settings
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── ConnectString.ini
│       │   │   │       ├── INIFileOperate.exe
│       │   │   │       ├── INIFileOperate.pdb
│       │   │   │       ├── INIFileOperate.vshost.exe
│       │   │   │       └── INIFileOperate.vshost.exe.manifest
│       │   │   └── obj
│       │   │       └── Debug
│       │   │           ├── INIFileOperate.Form1.resources
│       │   │           ├── INIFileOperate.Properties.Resources.resources
│       │   │           ├── INIFileOperate.csproj.FileListAbsolute.txt
│       │   │           ├── INIFileOperate.csproj.GenerateResource.Cache
│       │   │           ├── INIFileOperate.exe
│       │   │           ├── INIFileOperate.pdb
│       │   │           └── TempPE
│       │   └── INIFileOperate.sln
│       ├── 创建PDF文档
│       │   ├── CreatePDFDocument
│       │   │   ├── CreatePDFDocument.csproj
│       │   │   ├── Form1.Designer.cs
│       │   │   ├── Form1.cs
│       │   │   ├── Form1.resx
│       │   │   ├── Program.cs
│       │   │   ├── Properties
│       │   │   │   ├── AssemblyInfo.cs
│       │   │   │   ├── Resources.Designer.cs
│       │   │   │   ├── Resources.resx
│       │   │   │   ├── Settings.Designer.cs
│       │   │   │   └── Settings.settings
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── CreatePDFDocument.exe
│       │   │   │       ├── CreatePDFDocument.pdb
│       │   │   │       ├── CreatePDFDocument.vshost.exe
│       │   │   │       ├── CreatePDFDocument.vshost.exe.manifest
│       │   │   │       └── 程序使用说明.txt
│       │   │   └── obj
│       │   │       └── Debug
│       │   │           ├── CreatePDFDocument.Form1.resources
│       │   │           ├── CreatePDFDocument.Properties.Resources.resources
│       │   │           ├── CreatePDFDocument.csproj.FileListAbsolute.txt
│       │   │           ├── CreatePDFDocument.csproj.GenerateResource.Cache
│       │   │           ├── CreatePDFDocument.exe
│       │   │           ├── CreatePDFDocument.pdb
│       │   │           ├── ResolveAssemblyReference.cache
│       │   │           └── TempPE
│       │   └── CreatePDFDocument.sln
│       ├── 操作XML文件
│       │   ├── XMLFileOperate
│       │   │   ├── Form1.Designer.cs
│       │   │   ├── Form1.cs
│       │   │   ├── Form1.resx
│       │   │   ├── Program.cs
│       │   │   ├── Properties
│       │   │   │   ├── AssemblyInfo.cs
│       │   │   │   ├── Resources.Designer.cs
│       │   │   │   ├── Resources.resx
│       │   │   │   ├── Settings.Designer.cs
│       │   │   │   └── Settings.settings
│       │   │   ├── XMLFileOperate.csproj
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── XMLFileOperate.exe
│       │   │   │       ├── XMLFileOperate.pdb
│       │   │   │       ├── XMLFileOperate.vshost.exe
│       │   │   │       ├── XMLFileOperate.vshost.exe.manifest
│       │   │   │       └── fileTwo.XML
│       │   │   └── obj
│       │   │       └── Debug
│       │   │           ├── Refactor
│       │   │           ├── TempPE
│       │   │           ├── XMLFileOperate.Form1.resources
│       │   │           ├── XMLFileOperate.Properties.Resources.resources
│       │   │           ├── XMLFileOperate.csproj.FileListAbsolute.txt
│       │   │           ├── XMLFileOperate.csproj.GenerateResource.Cache
│       │   │           ├── XMLFileOperate.exe
│       │   │           └── XMLFileOperate.pdb
│       │   └── XMLFileOperate.sln
│       ├── 伪装文件夹
│       │   ├── CamouflageFolder
│       │   │   ├── CamouflageFolder.csproj
│       │   │   ├── Form1.Designer.cs
│       │   │   ├── Form1.cs
│       │   │   ├── Form1.resx
│       │   │   ├── Program.cs
│       │   │   ├── Properties
│       │   │   │   ├── AssemblyInfo.cs
│       │   │   │   ├── Resources.Designer.cs
│       │   │   │   ├── Resources.resx
│       │   │   │   ├── Settings.Designer.cs
│       │   │   │   └── Settings.settings
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── CamouflageFolder.exe
│       │   │   │       ├── CamouflageFolder.pdb
│       │   │   │       ├── CamouflageFolder.vshost.exe
│       │   │   │       └── CamouflageFolder.vshost.exe.manifest
│       │   │   ├── obj
│       │   │   │   └── Debug
│       │   │   │       ├── CamouflageFolder.Form1.resources
│       │   │   │       ├── CamouflageFolder.Properties.Resources.resources
│       │   │   │       ├── CamouflageFolder.csproj.FileListAbsolute.txt
│       │   │   │       ├── CamouflageFolder.csproj.GenerateResource.Cache
│       │   │   │       ├── CamouflageFolder.exe
│       │   │   │       ├── CamouflageFolder.pdb
│       │   │   │       ├── Refactor
│       │   │   │       └── TempPE
│       │   │   └── 图标.ico
│       │   └── CamouflageFolder.sln
│       ├── 批量更名器
│       │   ├── FileBatchChangeName
│       │   │   ├── AboutBox1.Designer.cs
│       │   │   ├── AboutBox1.cs
│       │   │   ├── AboutBox1.resx
│       │   │   ├── FileBatchChangeName.csproj
│       │   │   ├── Form1.Designer.cs
│       │   │   ├── Form1.cs
│       │   │   ├── Form1.resx
│       │   │   ├── Program.cs
│       │   │   ├── Properties
│       │   │   │   ├── AssemblyInfo.cs
│       │   │   │   ├── Resources.Designer.cs
│       │   │   │   ├── Resources.resx
│       │   │   │   ├── Settings.Designer.cs
│       │   │   │   └── Settings.settings
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── FileBatchChangeName.exe
│       │   │   │       ├── FileBatchChangeName.pdb
│       │   │   │       ├── FileBatchChangeName.vshost.exe
│       │   │   │       └── FileBatchChangeName.vshost.exe.manifest
│       │   │   ├── copy.gif
│       │   │   ├── gg.gif
│       │   │   ├── netspell.gif
│       │   │   ├── obj
│       │   │   │   └── Debug
│       │   │   │       ├── FileBatchChangeName.AboutBox1.resources
│       │   │   │       ├── FileBatchChangeName.Form1.resources
│       │   │   │       ├── FileBatchChangeName.Properties.Resources.resources
│       │   │   │       ├── FileBatchChangeName.csproj.FileListAbsolute.txt
│       │   │   │       ├── FileBatchChangeName.csproj.GenerateResource.Cache
│       │   │   │       ├── FileBatchChangeName.exe
│       │   │   │       ├── FileBatchChangeName.pdb
│       │   │   │       ├── Refactor
│       │   │   │       └── TempPE
│       │   │   │           └── Properties.Resources.Designer.cs.dll
│       │   │   ├── 图标 (166).ico
│       │   │   ├── 图标 (179).ico
│       │   │   ├── 图标 (220).ico
│       │   │   ├── 图标 (99).ico
│       │   │   └── 图标.ico
│       │   └── FileBatchChangeName.sln
│       ├── 批量解压缩
│       │   ├── BatchDecompression
│       │   │   ├── BatchDecompression.csproj
│       │   │   ├── BatchDecompression.csproj.user
│       │   │   ├── Form1.Designer.cs
│       │   │   ├── Form1.cs
│       │   │   ├── Form1.resx
│       │   │   ├── Program.cs
│       │   │   ├── Properties
│       │   │   │   ├── AssemblyInfo.cs
│       │   │   │   ├── Resources.Designer.cs
│       │   │   │   ├── Resources.resx
│       │   │   │   ├── Settings.Designer.cs
│       │   │   │   └── Settings.settings
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── BatchDecompression.exe
│       │   │   │       ├── BatchDecompression.pdb
│       │   │   │       ├── BatchDecompression.vshost.exe
│       │   │   │       ├── BatchDecompression.vshost.exe.manifest
│       │   │   │       └── 程序使用说明.txt
│       │   │   └── obj
│       │   │       └── Debug
│       │   │           ├── BatchDecompression.Form1.resources
│       │   │           ├── BatchDecompression.Properties.Resources.resources
│       │   │           ├── BatchDecompression.csproj.FileListAbsolute.txt
│       │   │           ├── BatchDecompression.csproj.GenerateResource.Cache
│       │   │           ├── BatchDecompression.exe
│       │   │           ├── BatchDecompression.pdb
│       │   │           ├── Refactor
│       │   │           ├── ResolveAssemblyReference.cache
│       │   │           └── TempPE
│       │   ├── BatchDecompression.sln
│       │   └── BatchDecompression.suo
│       ├── 汉字转拼音
│       │   ├── ChToPhoneticize
│       │   │   ├── ChToPhoneticize.csproj
│       │   │   ├── Form1.Designer.cs
│       │   │   ├── Form1.cs
│       │   │   ├── Form1.resx
│       │   │   ├── Program.cs
│       │   │   ├── Properties
│       │   │   │   ├── AssemblyInfo.cs
│       │   │   │   ├── Resources.Designer.cs
│       │   │   │   ├── Resources.resx
│       │   │   │   ├── Settings.Designer.cs
│       │   │   │   └── Settings.settings
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── ChToPhoneticize.exe
│       │   │   │       ├── ChToPhoneticize.pdb
│       │   │   │       ├── ChToPhoneticize.vshost.exe
│       │   │   │       └── ChToPhoneticize.vshost.exe.manifest
│       │   │   └── obj
│       │   │       └── Debug
│       │   │           ├── ChToPhoneticize.Form1.resources
│       │   │           ├── ChToPhoneticize.Properties.Resources.resources
│       │   │           ├── ChToPhoneticize.csproj.FileListAbsolute.txt
│       │   │           ├── ChToPhoneticize.csproj.GenerateResource.Cache
│       │   │           ├── ChToPhoneticize.exe
│       │   │           ├── ChToPhoneticize.pdb
│       │   │           ├── Refactor
│       │   │           └── TempPE
│       │   ├── ChToPhoneticize.sln
│       │   └── ChToPhoneticize.suo
│       ├── 获取目录中word问文件列表
│       │   ├── DistillWordList
│       │   │   ├── DistillWordList.csproj
│       │   │   ├── Form1.Designer.cs
│       │   │   ├── Form1.cs
│       │   │   ├── Form1.resx
│       │   │   ├── Program.cs
│       │   │   ├── Properties
│       │   │   │   ├── AssemblyInfo.cs
│       │   │   │   ├── Resources.Designer.cs
│       │   │   │   ├── Resources.resx
│       │   │   │   ├── Settings.Designer.cs
│       │   │   │   └── Settings.settings
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── DistillWordList.exe
│       │   │   │       ├── DistillWordList.pdb
│       │   │   │       ├── DistillWordList.vshost.exe
│       │   │   │       ├── DistillWordList.vshost.exe.manifest
│       │   │   │       ├── Interop.Office.dll
│       │   │   │       ├── Interop.VBIDE.dll
│       │   │   │       └── Interop.Word.dll
│       │   │   └── obj
│       │   │       └── Debug
│       │   │           ├── DistillWordList.Form1.resources
│       │   │           ├── DistillWordList.Properties.Resources.resources
│       │   │           ├── DistillWordList.csproj.FileListAbsolute.txt
│       │   │           ├── DistillWordList.csproj.GenerateResource.Cache
│       │   │           ├── DistillWordList.csproj.ResolveComReference.cache
│       │   │           ├── DistillWordList.exe
│       │   │           ├── DistillWordList.pdb
│       │   │           ├── Interop.Office.dll
│       │   │           ├── Interop.VBIDE.dll
│       │   │           ├── Interop.Word.dll
│       │   │           ├── Refactor
│       │   │           └── TempPE
│       │   └── DistillWordList.sln
│       ├── 文件分割与合并
│       │   ├── FileComminuteUnite
│       │   │   ├── FileComminuteUnite.csproj
│       │   │   ├── Program.cs
│       │   │   ├── Properties
│       │   │   │   ├── AssemblyInfo.cs
│       │   │   │   ├── Resources.Designer.cs
│       │   │   │   ├── Resources.resx
│       │   │   │   ├── Settings.Designer.cs
│       │   │   │   └── Settings.settings
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── FileComminuteUnite.exe
│       │   │   │       ├── FileComminuteUnite.pdb
│       │   │   │       ├── FileComminuteUnite.vshost.exe
│       │   │   │       └── FileComminuteUnite.vshost.exe.manifest
│       │   │   ├── frmSplit.cs
│       │   │   ├── frmSplit.designer.cs
│       │   │   ├── frmSplit.resx
│       │   │   └── obj
│       │   │       └── Debug
│       │   │           ├── FileComminuteUnite.Properties.Resources.resources
│       │   │           ├── FileComminuteUnite.csproj.FileListAbsolute.txt
│       │   │           ├── FileComminuteUnite.csproj.GenerateResource.Cache
│       │   │           ├── FileComminuteUnite.exe
│       │   │           ├── FileComminuteUnite.frmSplit.resources
│       │   │           ├── FileComminuteUnite.pdb
│       │   │           ├── Refactor
│       │   │           └── TempPE
│       │   ├── FileComminuteUnite.sln
│       │   └── FileComminuteUnite.suo
│       └── 获取本地磁盘目录
│           ├── GetDiskList
│           │   ├── BaseClass.cs
│           │   ├── Form1.Designer.cs
│           │   ├── Form1.cs
│           │   ├── Form1.resx
│           │   ├── GetDiskList.csproj
│           │   ├── Program.cs
│           │   ├── Properties
│           │   │   ├── AssemblyInfo.cs
│           │   │   ├── Resources.Designer.cs
│           │   │   ├── Resources.resx
│           │   │   ├── Settings.Designer.cs
│           │   │   └── Settings.settings
│           │   ├── bin
│           │   │   └── Debug
│           │   │       ├── GetDiskList.exe
│           │   │       ├── GetDiskList.pdb
│           │   │       ├── GetDiskList.vshost.exe
│           │   │       └── GetDiskList.vshost.exe.manifest
│           │   └── obj
│           │       └── Debug
│           │           ├── GetDiskList.Form1.resources
│           │           ├── GetDiskList.Properties.Resources.resources
│           │           ├── GetDiskList.csproj.FileListAbsolute.txt
│           │           ├── GetDiskList.csproj.GenerateResource.Cache
│           │           ├── GetDiskList.exe
│           │           ├── GetDiskList.pdb
│           │           ├── Refactor
│           │           └── TempPE
│           ├── GetDiskList.sln
│           └── GetDiskList.suo
└── 好例子网_198个经典C#—WinForm实例源码上.rar

1332 directories, 3885 files


标签: winform FORM ORM win for

实例下载地址

198个经典C#—WinForm实例源码上

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警