实例介绍
【实例截图】
【核心代码】.
└── 叩响C#之门光盘
└── 叩响C#之门及光盘
├── PHEI Broadview 2008专业书目 第一期
│ ├── 01-软件工程类图书2-8.doc
│ ├── 02-Pragmatic书架9-10.doc
│ ├── 03-安全技术大系11-17.doc
│ ├── 04-Java类图书18-26.doc
│ ├── 05-web开发系列图书27-33.doc
│ ├── 06-游戏及游戏开发类图书34.doc
│ ├── 07-搜索引擎及网络营销类图书35.doc
│ ├── 08-.NET类图书36-43.doc
│ ├── 09-从基础到实践44-46.doc
│ ├── 10-Linux技术丛书47-48.doc
│ ├── 11-数据库与数据仓库类图书49-52.doc
│ ├── 12-Borland大系53.doc
│ ├── 13-计算机专业人员书库54-67.doc
│ ├── 14-设计系列68-69.doc
│ ├── 15-典型模块与实例精讲丛书70.doc
│ ├── 16-IT人文类71.doc
│ ├── 17-电子信息工程类图书72-73.doc
│ ├── 18-博文视点作、译者指南74-76.doc
│ └── 19-全品种目录77-93.doc
└── Projects
├── 第III部分 .NET进阶
│ ├── 第16章 委托与事件
│ │ ├── 16.1 Delegate
│ │ │ ├── Delegate
│ │ │ │ ├── Delegate.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Delegate.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── Delegate.csproj.FileList.txt
│ │ │ ├── Delegate.sln
│ │ │ └── Delegate.suo
│ │ ├── 16.1 Integral
│ │ │ ├── Integral
│ │ │ │ ├── Integral.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Integral.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── Integral.csproj.FileList.txt
│ │ │ ├── Integral.sln
│ │ │ └── Integral.suo
│ │ ├── 16.4.1 EventTest
│ │ │ ├── EventTest
│ │ │ │ ├── EventTest.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
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── EventTest.Form1.resources
│ │ │ │ │ ├── EventTest.Properties.Resources.resources
│ │ │ │ │ ├── EventTest.csproj.GenerateResource.Cache
│ │ │ │ │ ├── EventTest.pdb
│ │ │ │ │ ├── Refactor
│ │ │ │ │ └── TempPE
│ │ │ │ └── EventTest.csproj.FileList.txt
│ │ │ ├── EventTest.sln
│ │ │ └── EventTest.suo
│ │ └── 16.4.2CustomEvent
│ │ ├── CustomEvent
│ │ │ ├── CustomEvent.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ └── obj
│ │ │ ├── CustomEvent.csproj.FileList.txt
│ │ │ └── Debug
│ │ │ ├── CustomEvent.pdb
│ │ │ └── TempPE
│ │ ├── CustomEvent.sln
│ │ └── CustomEvent.suo
│ ├── 第17章 绘图
│ │ ├── 17.10DrawingFont
│ │ │ ├── DrawingFont
│ │ │ │ ├── DrawingFont.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
│ │ │ │ │ └── DrawingFont.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── DrawingFont.Form1.resources
│ │ │ │ │ ├── DrawingFont.Properties.Resources.resources
│ │ │ │ │ ├── DrawingFont.csproj.GenerateResource.Cache
│ │ │ │ │ ├── DrawingFont.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── DrawingFont.csproj.FileList.txt
│ │ │ ├── DrawingFont.sln
│ │ │ └── DrawingFont.suo
│ │ ├── 17.11.1 DrawImage
│ │ │ ├── DrawImage
│ │ │ │ ├── DrawImage.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
│ │ │ │ │ └── DrawImage.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── DrawImage.Form1.resources
│ │ │ │ │ ├── DrawImage.Properties.Resources.resources
│ │ │ │ │ ├── DrawImage.csproj.GenerateResource.Cache
│ │ │ │ │ ├── DrawImage.pdb
│ │ │ │ │ ├── Refactor
│ │ │ │ │ └── TempPE
│ │ │ │ └── DrawImage.csproj.FileList.txt
│ │ │ ├── DrawImage.sln
│ │ │ ├── DrawImage.suo
│ │ │ ├── Thumbs.db
│ │ │ └── rose.jpg
│ │ ├── 17.11.2 DrawBitmap
│ │ │ ├── DrawBitmap.sln
│ │ │ ├── DrawBitmap.suo
│ │ │ ├── DrawImage
│ │ │ │ ├── Drawbitmap.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
│ │ │ │ │ └── DrawImage.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── DrawImage.Form1.resources
│ │ │ │ │ ├── DrawImage.Properties.Resources.resources
│ │ │ │ │ ├── DrawImage.clearButton.resources
│ │ │ │ │ ├── DrawImage.csproj.GenerateResource.Cache
│ │ │ │ │ ├── DrawImage.pdb
│ │ │ │ │ ├── Drawbitmap.csproj.GenerateResource.Cache
│ │ │ │ │ ├── Refactor
│ │ │ │ │ └── TempPE
│ │ │ │ ├── DrawImage.csproj.FileList.txt
│ │ │ │ └── Drawbitmap.csproj.FileList.txt
│ │ │ ├── DrawiBitmap.suo
│ │ │ ├── Thumbs.db
│ │ │ └── heart.jpg
│ │ ├── 17.11.3DrawMetafile
│ │ │ ├── DrawImage
│ │ │ │ ├── DrawMetafile.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
│ │ │ │ │ └── DrawImage.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── DrawImage.Form1.resources
│ │ │ │ │ ├── DrawImage.Properties.Resources.resources
│ │ │ │ │ ├── DrawImage.clearButton.resources
│ │ │ │ │ ├── DrawImage.csproj.GenerateResource.Cache
│ │ │ │ │ ├── DrawImage.pdb
│ │ │ │ │ ├── DrawMetafile.csproj.GenerateResource.Cache
│ │ │ │ │ ├── Drawbitmap.csproj.GenerateResource.Cache
│ │ │ │ │ ├── Refactor
│ │ │ │ │ └── TempPE
│ │ │ │ ├── DrawImage.csproj.FileList.txt
│ │ │ │ ├── DrawMetafile.csproj.FileList.txt
│ │ │ │ └── Drawbitmap.csproj.FileList.txt
│ │ │ ├── DrawMetafile.sln
│ │ │ ├── DrawMetafile.suo
│ │ │ ├── DrawiBitmap.suo
│ │ │ ├── Thumbs.db
│ │ │ └── snow.WMF
│ │ ├── 17.4 Drawing
│ │ │ ├── Drawing
│ │ │ │ ├── Drawing.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
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Drawing.Form1.resources
│ │ │ │ │ ├── Drawing.Properties.Resources.resources
│ │ │ │ │ ├── Drawing.csproj.GenerateResource.Cache
│ │ │ │ │ ├── Drawing.pdb
│ │ │ │ │ ├── Refactor
│ │ │ │ │ └── TempPE
│ │ │ │ └── Drawing.csproj.FileList.txt
│ │ │ ├── Drawing.sln
│ │ │ └── Drawing.suo
│ │ ├── 17.8 OnPaintTest
│ │ │ ├── OnPaintTest
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── OnPaintTest.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── OnPaintTest.Form1.resources
│ │ │ │ │ ├── OnPaintTest.Properties.Resources.resources
│ │ │ │ │ ├── OnPaintTest.csproj.GenerateResource.Cache
│ │ │ │ │ ├── OnPaintTest.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── OnPaintTest.csproj.FileList.txt
│ │ │ ├── OnPaintTest.sln
│ │ │ └── OnPaintTest.suo
│ │ ├── 17.9.1Transform
│ │ │ ├── Transform
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── Transform.csproj
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Refactor
│ │ │ │ │ ├── TempPE
│ │ │ │ │ ├── Transform.Form1.resources
│ │ │ │ │ ├── Transform.Properties.Resources.resources
│ │ │ │ │ ├── Transform.csproj.GenerateResource.Cache
│ │ │ │ │ └── Transform.pdb
│ │ │ │ └── Transform.csproj.FileList.txt
│ │ │ ├── Transform.sln
│ │ │ └── Transform.suo
│ │ └── 17.9.4ScrollWindow
│ │ ├── ScrollWindow
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ScrollWindow.csproj
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ └── ScrollWindow.pdb
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── ScrollWindow.Form1.resources
│ │ │ │ ├── ScrollWindow.Properties.Resources.resources
│ │ │ │ ├── ScrollWindow.csproj.GenerateResource.Cache
│ │ │ │ ├── ScrollWindow.pdb
│ │ │ │ └── TempPE
│ │ │ └── ScrollWindow.csproj.FileList.txt
│ │ ├── ScrollWindow.sln
│ │ └── ScrollWindow.suo
│ ├── 第18章 文件和流
│ │ ├── 18.1.1FileTest
│ │ │ ├── FileTest
│ │ │ │ ├── FileTest.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── FileTest.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── FileTest.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── FileTest.csproj.FileList.txt
│ │ │ ├── FileTest.sln
│ │ │ └── FileTest.suo
│ │ ├── 18.1.2DirectoryTest
│ │ │ ├── DirectoryTest
│ │ │ │ ├── DirectoryTest.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── DirectoryTest.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── DirectoryTest.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── DirectoryTest.csproj.FileList.txt
│ │ │ ├── DirectoryTest.sln
│ │ │ └── DirectoryTest.suo
│ │ ├── 18.1.3 PathTest
│ │ │ ├── PathTest
│ │ │ │ ├── PathTest.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── PathTest.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── PathTest.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── PathTest.csproj.FileList.txt
│ │ │ ├── PathTest.sln
│ │ │ └── PathTest.suo
│ │ ├── 18.1.4 EnvironmentTest
│ │ │ ├── EnvironmentTest
│ │ │ │ ├── EnvironmentTest.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── EnvironmentTest.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── EnvironmentTest.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── EnvironmentTest.csproj.FileList.txt
│ │ │ ├── EnvironmentTest.sln
│ │ │ └── EnvironmentTest.suo
│ │ └── 18.2StreamTest
│ │ ├── StreamTest
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── StreamTest.csproj
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ └── StreamTest.pdb
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── StreamTest.pdb
│ │ │ │ └── TempPE
│ │ │ └── StreamTest.csproj.FileList.txt
│ │ ├── StreamTest.sln
│ │ └── StreamTest.suo
│ ├── 第19章 字符串和正则表达式
│ │ ├── 19.1 StringTest
│ │ │ ├── StringTest
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── StringTest.csproj
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── StringTest.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── StringTest.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── StringTest.csproj.FileList.txt
│ │ │ ├── StringTest.sln
│ │ │ └── StringTest.suo
│ │ ├── 19.2StringBuilder
│ │ │ ├── StringBuilderTest
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── StringBuilderTest.csproj
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── StringBuilderTest.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── StringBuilderTest.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── StringBuilderTest.csproj.FileList.txt
│ │ │ ├── StringBuilderTest.sln
│ │ │ └── StringBuilderTest.suo
│ │ ├── 19.3 CharAnalyze
│ │ │ ├── CharAnalyze
│ │ │ │ ├── Char.csproj
│ │ │ │ ├── CharAnalyze.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
│ │ │ │ │ ├── Char.pdb
│ │ │ │ │ └── CharAnalyze.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Char.csproj.FileList.txt
│ │ │ │ ├── CharAnalyze.csproj.FileList.txt
│ │ │ │ └── Debug
│ │ │ │ ├── Char.Form1.resources
│ │ │ │ ├── Char.Properties.Resources.resources
│ │ │ │ ├── Char.csproj.GenerateResource.Cache
│ │ │ │ ├── CharAnalyze.Form1.resources
│ │ │ │ ├── CharAnalyze.Properties.Resources.resources
│ │ │ │ ├── CharAnalyze.csproj.GenerateResource.Cache
│ │ │ │ ├── CharAnalyze.pdb
│ │ │ │ ├── Refactor
│ │ │ │ └── TempPE
│ │ │ ├── CharAnalyze.sln
│ │ │ └── CharAnalyze.suo
│ │ ├── 19.4RegularExpression
│ │ │ ├── RegularExpressionTest
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── RegularExpressionTest.csproj
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── RegularExpressionTest.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── RegularExpressionTest.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── RegularExpressionTest.csproj.FileList.txt
│ │ │ ├── RegularExpressionTest.sln
│ │ │ └── RegularExpressionTest.suo
│ │ └── 19.4RegularExpression(深化练习)
│ │ ├── RegularExpression
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── RegularExpression.csproj
│ │ │ ├── RegularExpression.csproj.user
│ │ │ ├── RegularExpression_TemporaryKey.pfx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── RegularExpression.application
│ │ │ │ ├── RegularExpression.exe.manifest
│ │ │ │ ├── RegularExpression.pdb
│ │ │ │ ├── RegularExpression.publish
│ │ │ │ │ ├── RegularExpression.application
│ │ │ │ │ └── RegularExpression_1_0_0_0
│ │ │ │ │ ├── RegularExpression.exe.deploy
│ │ │ │ │ └── RegularExpression.exe.manifest
│ │ │ │ ├── RegularExpression.vshost.application
│ │ │ │ └── RegularExpression.vshost.exe.manifest
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── Refactor
│ │ │ │ ├── RegularExpression.Form1.resources
│ │ │ │ ├── RegularExpression.Properties.Resources.resources
│ │ │ │ ├── RegularExpression.application
│ │ │ │ ├── RegularExpression.csproj.GenerateResource.Cache
│ │ │ │ ├── RegularExpression.exe.manifest
│ │ │ │ ├── RegularExpression.pdb
│ │ │ │ └── TempPE
│ │ │ └── RegularExpression.csproj.FileList.txt
│ │ ├── RegularExpression.sln
│ │ └── RegularExpression.suo
│ ├── 第20章 特性、程序集和反射
│ │ ├── 20.1Attribute
│ │ │ ├── Attribute
│ │ │ │ ├── AnimalClassificationAttribute.cs
│ │ │ │ ├── AttributeTest.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── Wolf.cs
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── Attribute.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Attribute.csproj.FileList.txt
│ │ │ │ ├── AttributeTest.csproj.FileList.txt
│ │ │ │ └── Debug
│ │ │ │ ├── Attribute.pdb
│ │ │ │ └── TempPE
│ │ │ ├── AttributeTest.sln
│ │ │ └── AttributeTest.suo
│ │ ├── 20.2ZooMap
│ │ │ ├── AnimalImages
│ │ │ │ ├── Elephant.png
│ │ │ │ ├── Goldenmonkey.png
│ │ │ │ ├── Panda.png
│ │ │ │ ├── Swan.png
│ │ │ │ ├── Thumbs.db
│ │ │ │ ├── Tiger.png
│ │ │ │ └── Zoo.jpg
│ │ │ ├── ShowAnimals
│ │ │ │ ├── ImageResource.Designer.cs
│ │ │ │ ├── ImageResource.resx
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── Resources
│ │ │ │ │ ├── Elephant.png
│ │ │ │ │ ├── Goldenmonkey.png
│ │ │ │ │ ├── Panda.png
│ │ │ │ │ ├── Swan.png
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ └── Tiger.png
│ │ │ │ ├── ShowAnimals.cs
│ │ │ │ ├── ShowAnimals.csproj
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ ├── ShowAnimals.dll
│ │ │ │ │ └── ShowAnimals.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── ShowAnimals.ImageResource.resources
│ │ │ │ │ ├── ShowAnimals.csproj.GenerateResource.Cache
│ │ │ │ │ ├── ShowAnimals.dll
│ │ │ │ │ ├── ShowAnimals.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ │ └── ImageResource.Designer.cs.dll
│ │ │ │ └── ShowAnimals.csproj.FileList.txt
│ │ │ ├── ZooMap
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── ZooMap.csproj
│ │ │ │ ├── ZooMap.csproj.user
│ │ │ │ ├── ZooMap_TemporaryKey.pfx
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ ├── ShowAnimals.dll
│ │ │ │ │ ├── ShowAnimals.pdb
│ │ │ │ │ ├── ZooMap.application
│ │ │ │ │ ├── ZooMap.exe.manifest
│ │ │ │ │ ├── ZooMap.pdb
│ │ │ │ │ ├── ZooMap.publish
│ │ │ │ │ │ ├── ZooMap.application
│ │ │ │ │ │ └── ZooMap_1_0_0_0
│ │ │ │ │ │ ├── ShowAnimals.dll.deploy
│ │ │ │ │ │ ├── ZooMap.exe.deploy
│ │ │ │ │ │ └── ZooMap.exe.manifest
│ │ │ │ │ ├── ZooMap.vshost.application
│ │ │ │ │ └── ZooMap.vshost.exe.manifest
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ │ ├── TempPE
│ │ │ │ │ ├── ZooMap.Form1.resources
│ │ │ │ │ ├── ZooMap.Properties.Resources.resources
│ │ │ │ │ ├── ZooMap.application
│ │ │ │ │ ├── ZooMap.csproj.GenerateResource.Cache
│ │ │ │ │ ├── ZooMap.exe.manifest
│ │ │ │ │ └── ZooMap.pdb
│ │ │ │ └── ZooMap.csproj.FileList.txt
│ │ │ ├── ZooMap.sln
│ │ │ └── ZooMap.suo
│ │ ├── 20.3.1 TypeInfo
│ │ │ ├── TypeInfo
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── TypeInfo.csproj
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── TypeInfo.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── TempPE
│ │ │ │ │ └── TypeInfo.pdb
│ │ │ │ └── TypeInfo.csproj.FileList.txt
│ │ │ ├── TypeInfo.sln
│ │ │ └── TypeInfo.suo
│ │ ├── 20.3.2 AssemblyInfo
│ │ │ ├── AssemblyInfo
│ │ │ │ ├── AssemblyInfo.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ ├── Animals.dll
│ │ │ │ │ ├── Animals.pdb
│ │ │ │ │ └── AssemblyInfo.pdb
│ │ │ │ └── obj
│ │ │ │ ├── AssemblyInfo.csproj.FileList.txt
│ │ │ │ └── Debug
│ │ │ │ ├── AssemblyInfo.pdb
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ └── TempPE
│ │ │ ├── AssemblyInfo.sln
│ │ │ └── AssemblyInfo.suo
│ │ └── 20.3.3DynamicLoading
│ │ ├── DynamicLoading
│ │ │ ├── DynamicLoading.csproj
│ │ │ ├── DynamicLoading.csproj.user
│ │ │ ├── DynamicLoading_TemporaryKey.pfx
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── DynamicLoading.pdb
│ │ │ │ ├── ShowAnimals.dll
│ │ │ │ └── ShowAnimals.pdb
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── DynamicLoading.Form1.resources
│ │ │ │ │ ├── DynamicLoading.Properties.Resources.resources
│ │ │ │ │ ├── DynamicLoading.csproj.GenerateResource.Cache
│ │ │ │ │ ├── DynamicLoading.pdb
│ │ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ │ └── TempPE
│ │ │ │ └── DynamicLoading.csproj.FileList.txt
│ │ │ └── zooo.JPG
│ │ ├── DynamicLoading.sln
│ │ └── DynamicLoading.suo
│ ├── 第21章 多线程
│ │ ├── 21.2 Thread
│ │ │ ├── ThreadTest
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── ThreadTest.csproj
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── ThreadTest.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Refactor
│ │ │ │ │ ├── TempPE
│ │ │ │ │ ├── ThreadTest.Form1.resources
│ │ │ │ │ ├── ThreadTest.Properties.Resources.resources
│ │ │ │ │ ├── ThreadTest.csproj.GenerateResource.Cache
│ │ │ │ │ └── ThreadTest.pdb
│ │ │ │ └── ThreadTest.csproj.FileList.txt
│ │ │ ├── ThreadTest.sln
│ │ │ └── ThreadTest.suo
│ │ ├── 21.3ThreadPriority
│ │ │ ├── ThreadPriorityTest
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── ThreadPriorityTest.csproj
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── ThreadPriorityTest.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── TempPE
│ │ │ │ │ └── ThreadPriorityTest.pdb
│ │ │ │ └── ThreadPriorityTest.csproj.FileList.txt
│ │ │ ├── ThreadPriorityTest.sln
│ │ │ └── ThreadPriorityTest.suo
│ │ ├── 21.4Join
│ │ │ ├── JoinTest
│ │ │ │ ├── JoinTest.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── JoinTest.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── JoinTest.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── JoinTest.csproj.FileList.txt
│ │ │ ├── JoinTest.sln
│ │ │ └── JoinTest.suo
│ │ ├── 21.6.1Synchronization
│ │ │ ├── Synchronization
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── Synchronization.csproj
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── Synchronization.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Synchronization.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── Synchronization.csproj.FileList.txt
│ │ │ ├── Synchronization.sln
│ │ │ └── Synchronization.suo
│ │ ├── 21.6.2Interlocked
│ │ │ ├── InterlockedTest
│ │ │ │ ├── InterlockedTest.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── InterlockedTest.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── InterlockedTest.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── InterlockedTest.csproj.FileList.txt
│ │ │ ├── InterlockedTest.sln
│ │ │ └── InterlockedTest.suo
│ │ ├── 21.6.3Monitort
│ │ │ ├── MonitorTest.sln
│ │ │ ├── MonitorTest.suo
│ │ │ └── MonitortTest
│ │ │ ├── MonitorTest.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ └── MonitortTest.pdb
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── MonitortTest.pdb
│ │ │ │ └── TempPE
│ │ │ ├── MonitorTest.csproj.FileList.txt
│ │ │ └── MonitortTest.csproj.FileList.txt
│ │ ├── 21.6.4Mutex
│ │ │ ├── MutexA
│ │ │ │ ├── MutexA
│ │ │ │ │ ├── MutexA.csproj
│ │ │ │ │ ├── Program.cs
│ │ │ │ │ ├── Properties
│ │ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ │ ├── bin
│ │ │ │ │ │ └── Debug
│ │ │ │ │ │ └── MutexA.pdb
│ │ │ │ │ └── obj
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── MutexA.pdb
│ │ │ │ │ │ └── TempPE
│ │ │ │ │ └── MutexA.csproj.FileList.txt
│ │ │ │ ├── MutexA.sln
│ │ │ │ └── MutexA.suo
│ │ │ └── MutexB
│ │ │ ├── MutexB
│ │ │ │ ├── MutexB.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── MutexB.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── MutexB.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── MutexB.csproj.FileList.txt
│ │ │ ├── MutexB.sln
│ │ │ └── MutexB.suo
│ │ ├── 21.6.5Deadlock
│ │ │ ├── Deadlock
│ │ │ │ ├── Deadlock.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── Deadlock.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Deadlock.csproj.FileList.txt
│ │ │ │ └── Debug
│ │ │ │ ├── Deadlock.pdb
│ │ │ │ └── TempPE
│ │ │ ├── Deadlock.sln
│ │ │ └── Deadlock.suo
│ │ └── 21.7ThreadPoolTest
│ │ ├── ThreadPoolTest
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── ThreadPoolTest.csproj
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ └── ThreadPoolTest.pdb
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── TempPE
│ │ │ │ └── ThreadPoolTest.pdb
│ │ │ └── ThreadPoolTest.csproj.FileList.txt
│ │ ├── ThreadPoolTest.sln
│ │ └── ThreadPoolTest.suo
│ ├── 第22章 集合
│ │ ├── 22.2 Array
│ │ │ ├── ArrayTest.sln
│ │ │ ├── ArrayTest.suo
│ │ │ └── Collections_Array
│ │ │ ├── ArrayTest.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ └── Collections_Array.pdb
│ │ │ └── obj
│ │ │ ├── ArrayTest.csproj.FileList.txt
│ │ │ ├── Collections_Array.csproj.FileList.txt
│ │ │ └── Debug
│ │ │ ├── Collections_Array.pdb
│ │ │ └── TempPE
│ │ ├── 22.3 ArrayList
│ │ │ ├── ArrayListTest
│ │ │ │ ├── ArrayListTest.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── ArrayListTest.pdb
│ │ │ │ └── obj
│ │ │ │ ├── ArrayListTest.csproj.FileList.txt
│ │ │ │ └── Debug
│ │ │ │ ├── ArrayListTest.pdb
│ │ │ │ └── TempPE
│ │ │ ├── ArrayListTest.sln
│ │ │ └── ArrayListTest.suo
│ │ ├── 22.4 Stack
│ │ │ ├── StackTest
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── StackTest.csproj
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── StackTest.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── StackTest.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── StackTest.csproj.FileList.txt
│ │ │ ├── StackTest.sln
│ │ │ └── StackTest.suo
│ │ ├── 22.5 Queue
│ │ │ ├── QueueTest
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── QueueTest.csproj
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── QueueTest.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── QueueTest.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── QueueTest.csproj.FileList.txt
│ │ │ ├── QueueTest.sln
│ │ │ └── QueueTest.suo
│ │ ├── 22.6 SortedList
│ │ │ ├── SortedListTest
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── SortedListTest.csproj
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ └── SortedListTest.pdb
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── SortedListTest.pdb
│ │ │ │ │ └── TempPE
│ │ │ │ └── SortedListTest.csproj.FileList.txt
│ │ │ ├── SortedListTest.sln
│ │ │ └── SortedListTest.suo
│ │ └── 22.7HashtableTest
│ │ ├── HashtableTest
│ │ │ ├── HashtableTest.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ └── HashtableTest.pdb
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── HashtableTest.pdb
│ │ │ │ └── TempPE
│ │ │ └── HashtableTest.csproj.FileList.txt
│ │ ├── HashtableTest.sln
│ │ └── HashtableTest.suo
│ └── 第23章 泛型
│ ├── 23.1GenericTest
│ │ ├── GenericTest
│ │ │ ├── GenericTest.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ └── GenericTest.pdb
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── GenericTest.pdb
│ │ │ │ └── TempPE
│ │ │ └── GenericTest.csproj.FileList.txt
│ │ ├── GenericTest.sln
│ │ └── GenericTest.suo
│ ├── 23.2.1GenericList
│ │ ├── GenericList
│ │ │ ├── GenericList.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ └── GenericList.pdb
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── GenericList.pdb
│ │ │ │ └── TempPE
│ │ │ └── GenericList.csproj.FileList.txt
│ │ ├── GenericList.sln
│ │ └── GenericList.suo
│ ├── 23.2.2GenericQueue
│ │ ├── GenericQueue
│ │ │ ├── GenericQueue.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ └── GenericQueue.pdb
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── GenericQueue.pdb
│ │ │ │ └── TempPE
│ │ │ └── GenericQueue.csproj.FileList.txt
│ │ ├── GenericQueue.sln
│ │ └── GenericQueue.suo
│ ├── 23.2.3GenericStack
│ │ ├── GenericStack
│ │ │ ├── GenericStack.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ └── GenericStack.pdb
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── GenericStack.pdb
│ │ │ │ └── TempPE
│ │ │ └── GenericStack.csproj.FileList.txt
│ │ ├── GenericStack.sln
│ │ └── GenericStack.suo
│ └── 23.3Constraint
│ ├── Constraint
│ │ ├── Constraint.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ └── Constraint.pdb
│ │ └── obj
│ │ ├── Constraint.csproj.FileList.txt
│ │ └── Debug
│ │ ├── Constraint.pdb
│ │ └── TempPE
│ ├── Constraint.sln
│ └── Constraint.suo
└── 第II部分 Windows编程
├── 第13章 Windows窗体编程(一)
│ ├── 13.10Panel
│ │ ├── Backup
│ │ │ ├── Panel
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Panel.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── Resources
│ │ │ │ │ ├── display.jpg
│ │ │ │ │ └── touchkey.jpg
│ │ │ │ ├── bin
│ │ │ │ │ ├── Debug
│ │ │ │ │ └── Release
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Panel.csproj.CoreCompileInputs.cache
│ │ │ │ │ └── Panel.csprojAssemblyReference.cache
│ │ │ │ └── Release
│ │ │ │ ├── Panel.csproj.CoreCompileInputs.cache
│ │ │ │ └── Panel.csprojAssemblyReference.cache
│ │ │ └── Panel.sln
│ │ ├── Panel
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Panel.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── Thumbs.db
│ │ │ │ ├── display.jpg
│ │ │ │ ├── show.jpg
│ │ │ │ └── touchkey.jpg
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Panel.exe
│ │ │ │ │ └── Panel.pdb
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── Panel.Properties.Resources.resources
│ │ │ │ ├── Panel.csproj.CoreCompileInputs.cache
│ │ │ │ ├── Panel.csproj.FileListAbsolute.txt
│ │ │ │ ├── Panel.csproj.GenerateResource.cache
│ │ │ │ ├── Panel.csprojAssemblyReference.cache
│ │ │ │ ├── Panel.exe
│ │ │ │ ├── Panel.panelForm.resources
│ │ │ │ ├── Panel.pdb
│ │ │ │ ├── Refactor
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── Panel.csproj.FileList.txt
│ │ │ └── Release
│ │ │ └── Panel.csproj.CoreCompileInputs.cache
│ │ ├── Panel.sln
│ │ ├── Panel.suo
│ │ └── UpgradeLog.htm
│ ├── 13.1HelloWindows
│ │ ├── Backup
│ │ │ ├── HelloWindows
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── HelloWindows.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── bin
│ │ │ │ │ ├── Debug
│ │ │ │ │ └── Release
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ └── HelloWindows.csproj.CoreCompileInputs.cache
│ │ │ │ └── Release
│ │ │ │ └── HelloWindows.csproj.CoreCompileInputs.cache
│ │ │ └── HelloWindows.sln
│ │ ├── HelloWindows
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── HelloWindows.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── HelloWindows.exe
│ │ │ │ │ └── HelloWindows.pdb
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── HelloWindows.Form1.resources
│ │ │ │ ├── HelloWindows.Properties.Resources.resources
│ │ │ │ ├── HelloWindows.csproj.CoreCompileInputs.cache
│ │ │ │ ├── HelloWindows.csproj.FileListAbsolute.txt
│ │ │ │ ├── HelloWindows.csproj.GenerateResource.cache
│ │ │ │ ├── HelloWindows.csprojAssemblyReference.cache
│ │ │ │ ├── HelloWindows.exe
│ │ │ │ ├── HelloWindows.pdb
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── HelloWindows.csproj.FileList.txt
│ │ │ └── Release
│ │ │ └── HelloWindows.csproj.CoreCompileInputs.cache
│ │ ├── HelloWindows.sln
│ │ ├── HelloWindows.suo
│ │ └── UpgradeLog.htm
│ ├── 13.2Button
│ │ ├── Button
│ │ │ ├── Button.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
│ │ │ └── obj
│ │ │ ├── Button.csproj.FileList.txt
│ │ │ └── Debug
│ │ │ ├── Button.Form1.resources
│ │ │ ├── Button.Properties.Resources.resources
│ │ │ ├── Button.csproj.GenerateResource.Cache
│ │ │ ├── Button.pdb
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ ├── Button.sln
│ │ └── Button.suo
│ ├── 13.3Label
│ │ ├── Label
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Label.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── Label.Form1.resources
│ │ │ │ ├── Label.Properties.Resources.resources
│ │ │ │ ├── Label.csproj.GenerateResource.Cache
│ │ │ │ ├── Label.pdb
│ │ │ │ ├── Refactor
│ │ │ │ └── TempPE
│ │ │ └── Label.csproj.FileList.txt
│ │ ├── Label.sln
│ │ └── Label.suo
│ ├── 13.4LinkLabel
│ │ ├── LinkLabel
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── LinkLabel.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── LinkLabel.Form1.resources
│ │ │ │ ├── LinkLabel.Properties.Resources.resources
│ │ │ │ ├── LinkLabel.csproj.GenerateResource.Cache
│ │ │ │ ├── LinkLabel.pdb
│ │ │ │ └── TempPE
│ │ │ └── LinkLabel.csproj.FileList.txt
│ │ ├── LinkLabel.sln
│ │ └── LinkLabel.suo
│ ├── 13.5TextBox
│ │ ├── TextBox
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── TextBox.csproj
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── Refactor
│ │ │ │ ├── TempPE
│ │ │ │ ├── TextBox.Form1.resources
│ │ │ │ ├── TextBox.Properties.Resources.resources
│ │ │ │ ├── TextBox.csproj.GenerateResource.Cache
│ │ │ │ └── TextBox.pdb
│ │ │ └── TextBox.csproj.FileList.txt
│ │ ├── TextBox.sln
│ │ └── TextBox.suo
│ ├── 13.6RadioButton
│ │ ├── RadioButton
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── RadioButton.csproj
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── RadioButton.Properties.Resources.resources
│ │ │ │ ├── RadioButton.RadioButtonForm.resources
│ │ │ │ ├── RadioButton.csproj.GenerateResource.Cache
│ │ │ │ ├── RadioButton.pdb
│ │ │ │ ├── Refactor
│ │ │ │ └── TempPE
│ │ │ └── RadioButton.csproj.FileList.txt
│ │ ├── RadioButton.sln
│ │ └── RadioButton.suo
│ ├── 13.7CheckBox
│ │ ├── CheckBox
│ │ │ ├── CheckBox.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
│ │ │ └── obj
│ │ │ ├── CheckBox.csproj.FileList.txt
│ │ │ └── Debug
│ │ │ ├── CheckBox.CheckBoxForm.resources
│ │ │ ├── CheckBox.Properties.Resources.resources
│ │ │ ├── CheckBox.csproj.GenerateResource.Cache
│ │ │ ├── CheckBox.pdb
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ ├── CheckBox.sln
│ │ └── CheckBox.suo
│ ├── 13.8NumericUpDown
│ │ ├── Backup
│ │ │ ├── NumericUpDown
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── NumericUpDown.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── NumericUpDown.sln
│ │ ├── NumericUpDown
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── NumericUpDown.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── NumericUpDown.Form1.resources
│ │ │ │ ├── NumericUpDown.Properties.Resources.resources
│ │ │ │ ├── NumericUpDown.csproj.CoreCompileInputs.cache
│ │ │ │ ├── NumericUpDown.csproj.GenerateResource.Cache
│ │ │ │ ├── NumericUpDown.csprojAssemblyReference.cache
│ │ │ │ ├── NumericUpDown.pdb
│ │ │ │ ├── Refactor
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ └── NumericUpDown.csproj.FileList.txt
│ │ ├── NumericUpDown.sln
│ │ ├── NumericUpDown.suo
│ │ └── UpgradeLog.htm
│ └── 13.9GroupBox
│ ├── Backup
│ │ ├── GroupBox
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GroupBox.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── GroupBox.sln
│ ├── GroupBox
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── GroupBox.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── GroupBox.exe
│ │ │ │ └── GroupBox.pdb
│ │ │ └── Release
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GroupBox.Form1.resources
│ │ │ ├── GroupBox.Properties.Resources.resources
│ │ │ ├── GroupBox.csproj.CoreCompileInputs.cache
│ │ │ ├── GroupBox.csproj.FileListAbsolute.txt
│ │ │ ├── GroupBox.csproj.GenerateResource.cache
│ │ │ ├── GroupBox.exe
│ │ │ ├── GroupBox.pdb
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── GroupBox.csproj.FileList.txt
│ ├── GroupBox.sln
│ ├── GroupBox.suo
│ └── UpgradeLog.htm
└── 第14章 Windows窗体编程(二)
├── 14.1MouseEvent
│ ├── Backup
│ │ ├── MouseEvent
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── MouseEvent.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Resources
│ │ │ ├── large.bmp
│ │ │ ├── mid.bmp
│ │ │ └── small.bmp
│ │ └── MouseEvent.sln
│ ├── MouseEvent
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── MouseEvent.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ ├── Thumbs.db
│ │ │ ├── larg.bmp
│ │ │ ├── large.bmp
│ │ │ ├── mid.bmp
│ │ │ └── small.bmp
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── Release
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── MouseEvent.Form1.resources
│ │ │ ├── MouseEvent.Properties.Resources.resources
│ │ │ ├── MouseEvent.csproj.CoreCompileInputs.cache
│ │ │ ├── MouseEvent.csproj.GenerateResource.Cache
│ │ │ ├── MouseEvent.csprojAssemblyReference.cache
│ │ │ ├── MouseEvent.pdb
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── MouseEvent.csproj.FileList.txt
│ ├── MouseEvent.sln
│ ├── MouseEvent.suo
│ └── UpgradeLog.htm
├── 14.2KeyEvent
│ ├── KeyEvent
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── KeyEvent.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── KeyEvent.Form1.resources
│ │ │ ├── KeyEvent.Properties.Resources.resources
│ │ │ ├── KeyEvent.csproj.GenerateResource.Cache
│ │ │ ├── KeyEvent.pdb
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ └── KeyEvent.csproj.FileList.txt
│ ├── KeyEvent.sln
│ └── KeyEvent.suo
├── 14.3PictureBox
│ ├── PictureBox
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── PictureBox.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ ├── Thumbs.db
│ │ │ ├── answer.JPG
│ │ │ └── faces.jpg
│ │ ├── bin
│ │ │ └── Debug
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── PictureBox.Form1.resources
│ │ │ ├── PictureBox.Properties.Resources.resources
│ │ │ ├── PictureBox.csproj.GenerateResource.Cache
│ │ │ ├── PictureBox.pdb
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── PictureBox.csproj.FileList.txt
│ ├── PictureBox.sln
│ └── PictureBox.suo
├── 14.4ListBox
│ ├── ListBox
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── ListBox.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── ListBox.Form1.resources
│ │ │ ├── ListBox.Properties.Resources.resources
│ │ │ ├── ListBox.csproj.GenerateResource.Cache
│ │ │ ├── ListBox.pdb
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ └── ListBox.csproj.FileList.txt
│ ├── ListBox.sln
│ └── ListBox.suo
├── 14.5CheckListBox
│ ├── Backup
│ │ ├── CheckListBox
│ │ │ ├── CheckListBox.csproj
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── CheckListBox.sln
│ ├── CheckListBox
│ │ ├── CheckListBox.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
│ │ │ │ ├── CheckListBox.exe
│ │ │ │ └── CheckListBox.pdb
│ │ │ └── Release
│ │ └── obj
│ │ ├── CheckListBox.csproj.FileList.txt
│ │ └── Debug
│ │ ├── CheckListBox.Form1.resources
│ │ ├── CheckListBox.Properties.Resources.resources
│ │ ├── CheckListBox.csproj.CoreCompileInputs.cache
│ │ ├── CheckListBox.csproj.FileListAbsolute.txt
│ │ ├── CheckListBox.csproj.GenerateResource.cache
│ │ ├── CheckListBox.csprojAssemblyReference.cache
│ │ ├── CheckListBox.exe
│ │ ├── CheckListBox.pdb
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Refactor
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── CheckListBox.sln
│ ├── CheckListBox.suo
│ └── UpgradeLog.htm
├── 14.6ComboBox
│ ├── ComboBox
│ │ ├── ComboBox.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
│ │ └── obj
│ │ ├── ComboBox.csproj.FileList.txt
│ │ └── Debug
│ │ ├── ComboBox.Form1.resources
│ │ ├── ComboBox.Properties.Resources.resources
│ │ ├── ComboBox.csproj.GenerateResource.Cache
│ │ ├── ComboBox.pdb
│ │ ├── Refactor
│ │ └── TempPE
│ ├── ComboBox.sln
│ └── ComboBox.suo
├── 14.7ListView
│ ├── ListView
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Icons
│ │ │ ├── Calculator(small).png
│ │ │ ├── Calculator.png
│ │ │ ├── Internet Explorer(small).png
│ │ │ ├── Internet Explorer.png
│ │ │ ├── My Documents(small).png
│ │ │ ├── My Documents.png
│ │ │ ├── My Music(small).png
│ │ │ ├── My Music.png
│ │ │ ├── My Pictures(small).png
│ │ │ ├── My Pictures.png
│ │ │ ├── NotePad(small).png
│ │ │ ├── NotePad.png
│ │ │ └── Thumbs.db
│ │ ├── ListView.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── ListView.Form1.resources
│ │ │ ├── ListView.Properties.Resources.resources
│ │ │ ├── ListView.csproj.GenerateResource.Cache
│ │ │ ├── ListView.pdb
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ └── ListView.csproj.FileList.txt
│ ├── ListView.sln
│ └── ListView.suo
├── 14.8TreeView
│ ├── TreeView
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Icons
│ │ │ ├── Applications(small).png
│ │ │ ├── Calculator(small).png
│ │ │ ├── Computer(small).png
│ │ │ ├── Home(small).png
│ │ │ ├── Internet Explorer(small).png
│ │ │ ├── My Documents(small).png
│ │ │ ├── My Music(small).png
│ │ │ ├── My pictures(small).png
│ │ │ ├── NotePad(small).png
│ │ │ └── Thumbs.db
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── TreeView.csproj
│ │ ├── bin
│ │ │ └── Debug
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── Refactor
│ │ │ ├── TempPE
│ │ │ ├── TreeView.Form1.resources
│ │ │ ├── TreeView.Properties.Resources.resources
│ │ │ ├── TreeView.csproj.GenerateResource.Cache
│ │ │ └── TreeView.pdb
│ │ └── TreeView.csproj.FileList.txt
│ ├── TreeView.sln
│ └── TreeView.suo
└── 14.9Anchor_and_Dock
└── Anchor_and_Dock
├── Anchor_and_Dock.csproj
├── Form1.Designer.cs
├── Form1.cs
├── Form1.resx
├── Program.cs
└── Properties
└── AssemblyInfo.cs
631 directories, 1101 files
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论