在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 《GDI+高级编程》附书源代码 免积分

《GDI+高级编程》附书源代码 免积分

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:48.97M
  • 下载次数:13
  • 浏览次数:248
  • 发布时间:2021-11-11
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
杨建昌编著的《GDI+高级编程》附书源代码,以前上传的是3个分卷压缩文件,那时是因为上传的权限太小。现在可以上传60M的文件了,所以重新上传单个完整的源码压缩文件,总计50M。
【实例截图】
【核心代码】
16359647455149433538.rar
├── Chapter1
│   ├── Project1
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Project1.exe
│   │   │   ├── Project1.pdb
│   │   │   └── Project1.vshost.exe
│   │   ├── Class1.cs
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── Project1.exe
│   │   │   │   ├── Project1.pdb
│   │   │   │   └── TempPE
│   │   │   └── Project1.csproj.FileList.txt
│   │   └── Project1.csproj
│   ├── Project1.sln
│   └── Project1.suo
├── Chapter2
│   ├── ColorPane
│   │   ├── ColorPane
│   │   │   ├── app.config
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── ColorPane.exe
│   │   │   │   │   ├── ColorPane.exe.config
│   │   │   │   │   ├── ColorPane.pdb
│   │   │   │   │   ├── ColorPane.vshost.exe
│   │   │   │   │   └── ColorPane.vshost.exe.config
│   │   │   │   └── Release
│   │   │   │   ├── ColorPane.exe
│   │   │   │   ├── ColorPane.exe.config
│   │   │   │   ├── ColorPane.pdb
│   │   │   │   ├── ColorPane.vshost.exe
│   │   │   │   └── ColorPane.vshost.exe.config
│   │   │   ├── ClassDiagram1.cd
│   │   │   ├── ColorDrawer.cs
│   │   │   ├── ColorPane.csproj
│   │   │   ├── ColorPicker.cs
│   │   │   ├── ColorPicker.Designer.cs
│   │   │   ├── ColorPicker.resx
│   │   │   ├── ColorSlider.cs
│   │   │   ├── ColorSpace.cs
│   │   │   ├── ColorTab.cs
│   │   │   ├── ColorTab.Designer.cs
│   │   │   ├── ColorTab.resx
│   │   │   ├── ColorTracker.cs
│   │   │   ├── ColorTracker.Designer.cs
│   │   │   ├── ColorTracker.resx
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── ColorPane.csproj.FileList.txt
│   │   │   │   ├── Debug
│   │   │   │   │   ├── ColorPane.ColorPicker.resources
│   │   │   │   │   ├── ColorPane.ColorTab.resources
│   │   │   │   │   ├── ColorPane.ColorTracker.resources
│   │   │   │   │   ├── ColorPane.csproj.GenerateResource.Cache
│   │   │   │   │   ├── ColorPane.exe
│   │   │   │   │   ├── ColorPane.Form1.resources
│   │   │   │   │   ├── ColorPane.pdb
│   │   │   │   │   ├── ColorPane.Properties.Resources.resources
│   │   │   │   │   ├── Refactor
│   │   │   │   │   └── TempPE
│   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   └── Release
│   │   │   │   ├── ColorPane.ColorPicker.resources
│   │   │   │   ├── ColorPane.ColorTab.resources
│   │   │   │   ├── ColorPane.ColorTracker.resources
│   │   │   │   ├── ColorPane.csproj.GenerateResource.Cache
│   │   │   │   ├── ColorPane.exe
│   │   │   │   ├── ColorPane.Form1.resources
│   │   │   │   ├── ColorPane.pdb
│   │   │   │   ├── ColorPane.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Resources
│   │   │   │   ├── 69843.gif
│   │   │   │   ├── bb.bmp
│   │   │   │   ├── Gray.png
│   │   │   │   ├── MenuBar_Delete.png
│   │   │   │   ├── PencilToolIcon.png
│   │   │   │   ├── Pen.cur
│   │   │   │   ├── PenSmall.gif
│   │   │   │   ├── Switch.png
│   │   │   │   ├── Thumbs.db
│   │   │   │   └── WebColorSmall.png
│   │   │   ├── Settings.cs
│   │   │   ├── Slider.cs
│   │   │   └── temp.cs
│   │   ├── ColorPane.sln
│   │   └── ColorPane.suo
│   ├── ExplorerBar
│   │   ├── ExplorerBar
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── ExplorerBar.dll
│   │   │   │   │   └── ExplorerBar.pdb
│   │   │   │   └── Release
│   │   │   │   ├── ExplorerBar.dll
│   │   │   │   └── ExplorerBar.pdb
│   │   │   ├── ExplorerBar.cs
│   │   │   ├── ExplorerBar.csproj
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── ExplorerBar.csproj.GenerateResource.Cache
│   │   │   │   │   ├── ExplorerBar.dll
│   │   │   │   │   ├── ExplorerBar.pdb
│   │   │   │   │   ├── ExplorerBar.Res.resources
│   │   │   │   │   ├── Refactor
│   │   │   │   │   │   └── ExplorerBar.dll
│   │   │   │   │   └── TempPE
│   │   │   │   │   └── Res.Designer.cs.dll
│   │   │   │   ├── ExplorerBar.csproj.FileList.txt
│   │   │   │   └── Release
│   │   │   │   ├── ExplorerBar.csproj.GenerateResource.Cache
│   │   │   │   ├── ExplorerBar.dll
│   │   │   │   ├── ExplorerBar.pdb
│   │   │   │   ├── ExplorerBar.Res.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Res.Designer.cs.dll
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Res.Designer.cs
│   │   │   ├── Resources
│   │   │   │   ├── MenuBar_BackFrame.png
│   │   │   │   └── MenuBar_ForwardFrame.png
│   │   │   └── Res.resx
│   │   ├── ExplorerBar.sln
│   │   ├── ExplorerBar.suo
│   │   └── ExplorerBarTest
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── ExplorerBar.dll
│   │   │   │   ├── ExplorerBar.pdb
│   │   │   │   ├── ExplorerBarTest.exe
│   │   │   │   ├── ExplorerBarTest.pdb
│   │   │   │   └── ExplorerBarTest.vshost.exe
│   │   │   └── Release
│   │   │   ├── ExplorerBar.dll
│   │   │   ├── ExplorerBar.pdb
│   │   │   ├── ExplorerBarTest.exe
│   │   │   ├── ExplorerBarTest.pdb
│   │   │   └── ExplorerBarTest.vshost.exe
│   │   ├── ExplorerBarTest.csproj
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── ExplorerBarTest.csproj.GenerateResource.Cache
│   │   │   │   ├── ExplorerBarTest.exe
│   │   │   │   ├── ExplorerBarTest.Form1.resources
│   │   │   │   ├── ExplorerBarTest.pdb
│   │   │   │   ├── ExplorerBarTest.Properties.Resources.resources
│   │   │   │   ├── Refactor
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── ExplorerBarTest.csproj.FileList.txt
│   │   │   └── Release
│   │   │   ├── ExplorerBarTest.csproj.GenerateResource.Cache
│   │   │   ├── ExplorerBarTest.exe
│   │   │   ├── ExplorerBarTest.Form1.resources
│   │   │   ├── ExplorerBarTest.pdb
│   │   │   ├── ExplorerBarTest.Properties.Resources.resources
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   └── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── Resources
│   │   ├── BO_Organizations_Large.png
│   │   ├── BO_Persons.png
│   │   ├── BO_Scheduler_Large.png
│   │   ├── BO_Users_Large.png
│   │   ├── MenuBar_Exit.png
│   │   └── Security_Image.png
│   ├── LayeredWindow
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── LayeredWindow.exe
│   │   │   │   ├── LayeredWindow.pdb
│   │   │   │   └── LayeredWindow.vshost.exe
│   │   │   └── Release
│   │   │   ├── LayeredWindow.exe
│   │   │   ├── LayeredWindow.pdb
│   │   │   └── LayeredWindow.vshost.exe
│   │   ├── Canvas.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── LayeredWindow.csproj
│   │   ├── LayeredWindow.sln
│   │   ├── LayeredWindow.suo
│   │   ├── obj
│   │   │   ├── Chapter3.csproj.FileList.txt
│   │   │   ├── Debug
│   │   │   │   ├── Chapter3.csproj.GenerateResource.Cache
│   │   │   │   ├── LayeredWindow.csproj.GenerateResource.Cache
│   │   │   │   ├── LayeredWindow.exe
│   │   │   │   ├── LayeredWindow.Form1.resources
│   │   │   │   ├── LayeredWindow.pdb
│   │   │   │   ├── LayeredWindow.Properties.Resources.resources
│   │   │   │   ├── Refactor
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── LayeredWindow.csproj.FileList.txt
│   │   │   └── Release
│   │   │   ├── LayeredWindow.csproj.GenerateResource.Cache
│   │   │   ├── LayeredWindow.exe
│   │   │   ├── LayeredWindow.Form1.resources
│   │   │   ├── LayeredWindow.pdb
│   │   │   ├── LayeredWindow.Properties.Resources.resources
│   │   │   └── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Resources
│   │   │   ├── logo.png
│   │   │   └── Thumbs.db
│   │   └── temp.cs
│   ├── NumberBox
│   │   ├── NumberBox
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── NumberBox.dll
│   │   │   │   │   └── NumberBox.pdb
│   │   │   │   └── Release
│   │   │   │   ├── NumberBox.dll
│   │   │   │   └── NumberBox.pdb
│   │   │   ├── NumberBox.cs
│   │   │   ├── NumberBox.csproj
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── NumberBox.dll
│   │   │   │   │   ├── NumberBox.pdb
│   │   │   │   │   └── TempPE
│   │   │   │   ├── NumberBox.csproj.FileList.txt
│   │   │   │   └── Release
│   │   │   │   ├── NumberBox.dll
│   │   │   │   ├── NumberBox.pdb
│   │   │   │   └── TempPE
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── NumberBox.sln
│   │   ├── NumberBox.suo
│   │   └── NumberBoxTest
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── NumberBox.dll
│   │   │   │   ├── NumberBox.pdb
│   │   │   │   ├── NumberBoxTest.exe
│   │   │   │   ├── NumberBoxTest.pdb
│   │   │   │   └── NumberBoxTest.vshost.exe
│   │   │   └── Release
│   │   │   ├── NumberBox.dll
│   │   │   ├── NumberBox.pdb
│   │   │   ├── NumberBoxTest.exe
│   │   │   ├── NumberBoxTest.pdb
│   │   │   └── NumberBoxTest.vshost.exe
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── NumberBoxTest.csproj
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── NumberBoxTest.csproj.GenerateResource.Cache
│   │   │   │   ├── NumberBoxTest.exe
│   │   │   │   ├── NumberBoxTest.Form1.resources
│   │   │   │   ├── NumberBoxTest.pdb
│   │   │   │   ├── NumberBoxTest.Properties.Resources.resources
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   └── TempPE
│   │   │   ├── NumberBoxTest.csproj.FileList.txt
│   │   │   └── Release
│   │   │   ├── NumberBoxTest.csproj.GenerateResource.Cache
│   │   │   ├── NumberBoxTest.exe
│   │   │   ├── NumberBoxTest.Form1.resources
│   │   │   ├── NumberBoxTest.pdb
│   │   │   ├── NumberBoxTest.Properties.Resources.resources
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   └── TempPE
│   │   ├── Program.cs
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── VisualStyle
│   │   ├── VisualStyle
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── VisualStyle.exe
│   │   │   │   │   ├── VisualStyle.pdb
│   │   │   │   │   ├── VisualStyle.vshost.exe
│   │   │   │   │   └── VisualStyle.XML
│   │   │   │   └── Release
│   │   │   │   ├── VisualStyle.exe
│   │   │   │   ├── VisualStyle.pdb
│   │   │   │   └── VisualStyle.vshost.exe
│   │   │   ├── Documentation.cs
│   │   │   ├── MainForm.cs
│   │   │   ├── MainForm.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Refactor
│   │   │   │   │   ├── TempPE
│   │   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   │   ├── VisualStyle.csproj.GenerateResource.Cache
│   │   │   │   │   ├── VisualStyle.exe
│   │   │   │   │   ├── VisualStyle.MainForm.resources
│   │   │   │   │   ├── VisualStyle.pdb
│   │   │   │   │   └── VisualStyle.Properties.Resources.resources
│   │   │   │   ├── Release
│   │   │   │   │   ├── Refactor
│   │   │   │   │   ├── TempPE
│   │   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   │   ├── VisualStyle.csproj.GenerateResource.Cache
│   │   │   │   │   ├── VisualStyle.exe
│   │   │   │   │   ├── VisualStyle.MainForm.resources
│   │   │   │   │   ├── VisualStyle.pdb
│   │   │   │   │   └── VisualStyle.Properties.Resources.resources
│   │   │   │   └── VisualStyle.csproj.FileList.txt
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Resources
│   │   │   │   ├── Attention.png
│   │   │   │   └── Class128.png
│   │   │   └── VisualStyle.csproj
│   │   ├── VisualStyle.sln
│   │   └── VisualStyle.suo
│   └── 其他
│   └── WindowMessages.cs
├── Chapter3
│   ├── DesignerSerializer
│   │   ├── DesignerSerializer
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── DesignerSerializer.exe
│   │   │   │   ├── DesignerSerializer.pdb
│   │   │   │   └── DesignerSerializer.vshost.exe
│   │   │   ├── DateSpanComponent.cs
│   │   │   ├── DesignerSerializer.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── DesignerSerializer.csproj.GenerateResource.Cache
│   │   │   │   │   ├── DesignerSerializer.exe
│   │   │   │   │   ├── DesignerSerializer.pdb
│   │   │   │   │   ├── Refactor
│   │   │   │   │   ├── SimpleDesignerSerializer.Form1.resources
│   │   │   │   │   ├── SimpleDesignerSerializer.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   └── DesignerSerializer.csproj.FileList.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── DesignerSerializer.sln
│   │   └── DesignerSerializer.suo
│   ├── EasyIDE
│   │   ├── EasyIDE
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── EasyIDE.exe
│   │   │   │   ├── EasyIDE.pdb
│   │   │   │   └── EasyIDE.vshost.exe
│   │   │   ├── Controls
│   │   │   │   ├── PropertyEditor.cs
│   │   │   │   └── ToolBox.cs
│   │   │   ├── EasyIDE.csproj
│   │   │   ├── frmDocument.cs
│   │   │   ├── MDIMain.cs
│   │   │   ├── MDIMain.Designer.cs
│   │   │   ├── MDIMain.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── EasyIDE.csproj.GenerateResource.Cache
│   │   │   │   │   ├── EasyIDE.exe
│   │   │   │   │   ├── EasyIDE.MDIMain.resources
│   │   │   │   │   ├── EasyIDE.pdb
│   │   │   │   │   ├── EasyIDE.Properties.Resources.resources
│   │   │   │   │   ├── Refactor
│   │   │   │   │   └── TempPE
│   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   └── EasyIDE.csproj.FileList.txt
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Resources
│   │   │   │   └── pointer.png
│   │   │   └── Services
│   │   │   ├── ContextMenuService.cs
│   │   │   └── NameCreationService.cs
│   │   ├── EasyIDE.sln
│   │   └── EasyIDE.suo
│   ├── MatrixDemo
│   │   ├── MatrixDemo
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── MatrixDemo.exe
│   │   │   │   ├── MatrixDemo.pdb
│   │   │   │   └── MatrixDemo.vshost.exe
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── MatrixDemo.csproj
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── MatrixDemo.csproj.GenerateResource.Cache
│   │   │   │   │   ├── MatrixDemo.exe
│   │   │   │   │   ├── MatrixDemo.Form1.resources
│   │   │   │   │   ├── MatrixDemo.pdb
│   │   │   │   │   ├── MatrixDemo.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── MatrixDemo.csproj.FileList.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── MatrixDemo.sln
│   │   └── MatrixDemo.suo
│   ├── MediaPlayer
│   │   ├── MediaPlayer
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── MediaPlayer.dll
│   │   │   │   │   ├── MediaPlayer.pdb
│   │   │   │   │   └── MediaPlayer.vshost.exe
│   │   │   │   └── Release
│   │   │   │   ├── MediaPlayer.dll
│   │   │   │   └── MediaPlayer.pdb
│   │   │   ├── MediaPlayer.cs
│   │   │   ├── MediaPlayer.csproj
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── MediaPlayer.dll
│   │   │   │   │   ├── MediaPlayer.pdb
│   │   │   │   │   ├── Refactor
│   │   │   │   │   │   └── MediaPlayer.dll
│   │   │   │   │   └── TempPE
│   │   │   │   ├── MediaPlayer.csproj.FileList.txt
│   │   │   │   └── Release
│   │   │   │   ├── MediaPlayer.dll
│   │   │   │   ├── MediaPlayer.pdb
│   │   │   │   └── TempPE
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── MediaPlayer.sln
│   │   ├── MediaPlayer.suo
│   │   └── MusicPlayer
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── MediaPlayer.dll
│   │   │   │   ├── MediaPlayer.pdb
│   │   │   │   ├── MusicPlayer.exe
│   │   │   │   ├── MusicPlayer.pdb
│   │   │   │   ├── MusicPlayer.vshost.exe
│   │   │   │   ├── Shape.dll
│   │   │   │   └── Shape.pdb
│   │   │   └── Release
│   │   │   ├── MediaPlayer.dll
│   │   │   ├── MediaPlayer.pdb
│   │   │   ├── MusicPlayer.exe
│   │   │   ├── MusicPlayer.pdb
│   │   │   ├── MusicPlayer.vshost.exe
│   │   │   ├── Shape.dll
│   │   │   └── Shape.pdb
│   │   ├── frmMain.cs
│   │   ├── frmMain.Designer.cs
│   │   ├── frmMain.resx
│   │   ├── frmPlayList.cs
│   │   ├── frmPlayList.Designer.cs
│   │   ├── frmPlayList.resx
│   │   ├── MusicPlayer.csproj
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── MusicPlayer.csproj.GenerateResource.Cache
│   │   │   │   ├── MusicPlayer.exe
│   │   │   │   ├── MusicPlayer.frmMain.resources
│   │   │   │   ├── MusicPlayer.frmPlayList.resources
│   │   │   │   ├── MusicPlayer.pdb
│   │   │   │   ├── MusicPlayer.Properties.Resources.resources
│   │   │   │   ├── Refactor
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── MusicPlayer.csproj.FileList.txt
│   │   │   └── Release
│   │   │   ├── MusicPlayer.csproj.GenerateResource.Cache
│   │   │   ├── MusicPlayer.exe
│   │   │   ├── MusicPlayer.frmMain.resources
│   │   │   ├── MusicPlayer.frmPlayList.resources
│   │   │   ├── MusicPlayer.pdb
│   │   │   ├── MusicPlayer.Properties.Resources.resources
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   └── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── Resources
│   │   ├── MediaPlayer.png
│   │   ├── MediaPlayerSlider.png
│   │   ├── MenuBar_ChooseSkin.png
│   │   ├── PlayList.png
│   │   └── Thumbs.db
│   ├── Ruler
│   │   ├── Ruler
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ruler.dll
│   │   │   │   └── Ruler.pdb
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Refactor
│   │   │   │   │   │   └── Ruler.dll
│   │   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   │   ├── Ruler.dll
│   │   │   │   │   ├── Ruler.pdb
│   │   │   │   │   └── TempPE
│   │   │   │   └── Ruler.csproj.FileList.txt
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Ruler.cs
│   │   │   └── Ruler.csproj
│   │   ├── RulerTest
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ruler.dll
│   │   │   │   ├── Ruler.pdb
│   │   │   │   ├── RulerTest.exe
│   │   │   │   ├── RulerTest.pdb
│   │   │   │   └── RulerTest.vshost.exe
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Refactor
│   │   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   │   ├── RulerTest.csproj.GenerateResource.Cache
│   │   │   │   │   ├── RulerTest.exe
│   │   │   │   │   ├── RulerTest.Form1.resources
│   │   │   │   │   ├── RulerTest.pdb
│   │   │   │   │   ├── RulerTest.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── RulerTest.csproj.FileList.txt
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   └── RulerTest.csproj
│   │   ├── RulerTest.sln
│   │   └── RulerTest.suo
│   ├── Shape
│   │   ├── Shape
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Shape.dll
│   │   │   │   │   └── Shape.pdb
│   │   │   │   └── Release
│   │   │   │   ├── Shape.dll
│   │   │   │   └── Shape.pdb
│   │   │   ├── Class1.cs
│   │   │   ├── ClassDiagram1.cd
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Refactor
│   │   │   │   │   │   └── Shape.dll
│   │   │   │   │   ├── Shape.dll
│   │   │   │   │   ├── Shape.pdb
│   │   │   │   │   └── TempPE
│   │   │   │   ├── Release
│   │   │   │   │   ├── Shape.dll
│   │   │   │   │   ├── Shape.pdb
│   │   │   │   │   └── TempPE
│   │   │   │   └── Shape.csproj.FileList.txt
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Shape.cs
│   │   │   └── Shape.csproj
│   │   ├── Shape.sln
│   │   ├── Shape.suo
│   │   └── ShapeTest
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── ColorPane.exe
│   │   │   │   ├── ColorPane.pdb
│   │   │   │   ├── NumberBox.dll
│   │   │   │   ├── NumberBox.pdb
│   │   │   │   ├── Shape.dll
│   │   │   │   ├── Shape.pdb
│   │   │   │   ├── ShapeTest.exe
│   │   │   │   ├── ShapeTest.pdb
│   │   │   │   └── ShapeTest.vshost.exe
│   │   │   └── Release
│   │   │   ├── ColorPane.exe
│   │   │   ├── ColorPane.pdb
│   │   │   ├── NumberBox.dll
│   │   │   ├── NumberBox.pdb
│   │   │   ├── Shape.dll
│   │   │   ├── Shape.pdb
│   │   │   ├── ShapeTest.exe
│   │   │   ├── ShapeTest.pdb
│   │   │   └── ShapeTest.vshost.exe
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── Refactor
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── ShapeTest.csproj.GenerateResource.Cache
│   │   │   │   ├── ShapeTest.exe
│   │   │   │   ├── ShapeTest.Form1.resources
│   │   │   │   ├── ShapeTest.pdb
│   │   │   │   ├── ShapeTest.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Release
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── ShapeTest.csproj.GenerateResource.Cache
│   │   │   │   ├── ShapeTest.exe
│   │   │   │   ├── ShapeTest.Form1.resources
│   │   │   │   ├── ShapeTest.pdb
│   │   │   │   ├── ShapeTest.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   └── ShapeTest.csproj.FileList.txt
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Resources
│   │   │   ├── PencilToolIcon.png
│   │   │   ├── Splashbg.png
│   │   │   └── wizard16_h.bmp
│   │   └── ShapeTest.csproj
│   ├── SoundApp
│   │   ├── SoundApp
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── ColorPane.exe
│   │   │   │   ├── ColorPane.pdb
│   │   │   │   ├── Shape.dll
│   │   │   │   ├── Shape.pdb
│   │   │   │   ├── SoundApp.exe
│   │   │   │   ├── SoundApp.pdb
│   │   │   │   ├── SoundApp.vshost.exe
│   │   │   │   ├── Tuner.dll
│   │   │   │   └── Tuner.pdb
│   │   │   ├── Class1.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Music
│   │   │   │   └── Let It Be Me 但愿是我.wav
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   │   ├── SoundApp.csproj.GenerateResource.Cache
│   │   │   │   │   ├── SoundApp.exe
│   │   │   │   │   ├── SoundApp.Form1.resources
│   │   │   │   │   ├── SoundApp.pdb
│   │   │   │   │   ├── SoundApp.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   └── SoundApp.csproj.FileList.txt
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Resources
│   │   │   │   ├── down.gif
│   │   │   │   ├── right.gif
│   │   │   │   ├── square2.gif
│   │   │   │   ├── up.gif
│   │   │   │   └── Windows XP 登录音.wav
│   │   │   └── SoundApp.csproj
│   │   ├── SoundApp.sln
│   │   └── SoundApp.suo
│   ├── Transformations
│   │   ├── Transformations
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Shape.dll
│   │   │   │   ├── Shape.pdb
│   │   │   │   ├── Transformations.exe
│   │   │   │   ├── Transformations.pdb
│   │   │   │   └── Transformations.vshost.exe
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   │   ├── TempPE
│   │   │   │   │   ├── Transformations.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Transformations.exe
│   │   │   │   │   ├── Transformations.Form1.resources
│   │   │   │   │   ├── Transformations.pdb
│   │   │   │   │   └── Transformations.Properties.Resources.resources
│   │   │   │   └── Transformations.csproj.FileList.txt
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   └── Transformations.csproj
│   │   ├── Transformations.sln
│   │   └── Transformations.suo
│   ├── TransLines
│   │   ├── TransLines
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── TransLines.exe
│   │   │   │   ├── TransLines.pdb
│   │   │   │   └── TransLines.vshost.exe
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Refactor
│   │   │   │   │   ├── TempPE
│   │   │   │   │   ├── TransLines.csproj.GenerateResource.Cache
│   │   │   │   │   ├── TransLines.exe
│   │   │   │   │   ├── TransLines.Form1.resources
│   │   │   │   │   ├── TransLines.pdb
│   │   │   │   │   └── TransLines.Properties.Resources.resources
│   │   │   │   └── TransLines.csproj.FileList.txt
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── TransLines.cs
│   │   │   └── TransLines.csproj
│   │   ├── TransLines.sln
│   │   └── TransLines.suo
│   ├── Transpoints
│   │   ├── Transpoints
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Transpoints.exe
│   │   │   │   ├── Transpoints.pdb
│   │   │   │   └── Transpoints.vshost.exe
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Refactor
│   │   │   │   │   ├── TempPE
│   │   │   │   │   ├── Transpoints.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Transpoints.exe
│   │   │   │   │   ├── Transpoints.Form1.resources
│   │   │   │   │   ├── Transpoints.pdb
│   │   │   │   │   └── Transpoints.Properties.Resources.resources
│   │   │   │   └── Transpoints.csproj.FileList.txt
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   └── Transpoints.csproj
│   │   ├── Transpoints.sln
│   │   └── Transpoints.suo
│   ├── Tuner
│   │   ├── Tuner
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── ColorPane.exe
│   │   │   │   │   ├── ColorPane.pdb
│   │   │   │   │   ├── Shape.dll
│   │   │   │   │   ├── Shape.pdb
│   │   │   │   │   ├── Tuner.dll
│   │   │   │   │   └── Tuner.pdb
│   │   │   │   └── Release
│   │   │   │   ├── ColorPane.exe
│   │   │   │   ├── ColorPane.pdb
│   │   │   │   ├── Shape.dll
│   │   │   │   ├── Shape.pdb
│   │   │   │   ├── Tuner.dll
│   │   │   │   └── Tuner.pdb
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Properties.Resource.resources
│   │   │   │   │   ├── Refactor
│   │   │   │   │   │   └── Tuner.dll
│   │   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   │   ├── TempPE
│   │   │   │   │   │   └── Resource.Designer.cs.dll
│   │   │   │   │   ├── Tuner.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Tuner.dll
│   │   │   │   │   └── Tuner.pdb
│   │   │   │   ├── Release
│   │   │   │   │   ├── Properties.Resource.resources
│   │   │   │   │   ├── TempPE
│   │   │   │   │   │   └── Resource.Designer.cs.dll
│   │   │   │   │   ├── Tuner.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Tuner.dll
│   │   │   │   │   └── Tuner.pdb
│   │   │   │   └── Tuner.csproj.FileList.txt
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Resource.Designer.cs
│   │   │   ├── Resource.resx
│   │   │   ├── Resources
│   │   │   │   └── InputAlert.wav
│   │   │   ├── Tuner.cs
│   │   │   └── Tuner.csproj
│   │   ├── Tuner.sln
│   │   ├── Tuner.suo
│   │   └── TunerTest
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── ColorPane.exe
│   │   │   │   ├── ColorPane.pdb
│   │   │   │   ├── Shape.dll
│   │   │   │   ├── Shape.pdb
│   │   │   │   ├── Tuner.dll
│   │   │   │   ├── Tuner.pdb
│   │   │   │   ├── TunerTest.exe
│   │   │   │   ├── TunerTest.pdb
│   │   │   │   └── TunerTest.vshost.exe
│   │   │   └── Release
│   │   │   ├── ColorPane.exe
│   │   │   ├── ColorPane.pdb
│   │   │   ├── Shape.dll
│   │   │   ├── Shape.pdb
│   │   │   ├── Tuner.dll
│   │   │   ├── Tuner.pdb
│   │   │   ├── TunerTest.exe
│   │   │   ├── TunerTest.pdb
│   │   │   └── TunerTest.vshost.exe
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── Refactor
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── TempPE
│   │   │   │   ├── TunerTest.csproj.GenerateResource.Cache
│   │   │   │   ├── TunerTest.exe
│   │   │   │   ├── TunerTest.Form1.resources
│   │   │   │   ├── TunerTest.pdb
│   │   │   │   └── TunerTest.Properties.Resources.resources
│   │   │   ├── Release
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── TempPE
│   │   │   │   ├── TunerTest.csproj.GenerateResource.Cache
│   │   │   │   ├── TunerTest.exe
│   │   │   │   ├── TunerTest.Form1.resources
│   │   │   │   ├── TunerTest.pdb
│   │   │   │   └── TunerTest.Properties.Resources.resources
│   │   │   └── TunerTest.csproj.FileList.txt
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── TunerTest.csproj
│   └── WaitingCircle
│   ├── WaitingCircle
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Shape.dll
│   │   │   ├── Shape.pdb
│   │   │   ├── WaitingCircle.dll
│   │   │   ├── WaitingCircle.pdb
│   │   │   └── WaitingCircle.vshost.exe
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── Refactor
│   │   │   │   │   └── WaitingCircle.dll
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── System.Windows.Forms.Design.WaitingCircleDesignForm.resources
│   │   │   │   ├── TempPE
│   │   │   │   │   └── Resource.Designer.cs.dll
│   │   │   │   ├── WaitingCircle.csproj.GenerateResource.Cache
│   │   │   │   ├── WaitingCircle.dll
│   │   │   │   ├── WaitingCircle.pdb
│   │   │   │   └── WaitingCircle.Resource.resources
│   │   │   └── WaitingCircle.csproj.FileList.txt
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Resource.Designer.cs
│   │   ├── Resource.resx
│   │   ├── Resources
│   │   │   └── volume16.bmp
│   │   ├── WaitingCircle.cs
│   │   ├── WaitingCircle.csproj
│   │   ├── WaitingCircle.csproj.user
│   │   ├── WaitingCircleDesigner.cs
│   │   ├── WaitingCircleDesignForm.cs
│   │   ├── WaitingCircleDesignForm.Designer.cs
│   │   └── WaitingCircleDesignForm.resx
│   ├── WaitingCircle.sln
│   ├── WaitingCircle.suo
│   └── WaitingCircleTest
│   ├── bin
│   │   └── Debug
│   │   ├── Shape.dll
│   │   ├── Shape.pdb
│   │   ├── WaitingCircle.dll
│   │   ├── WaitingCircle.pdb
│   │   ├── WaitingCircleTest.exe
│   │   ├── WaitingCircleTest.pdb
│   │   └── WaitingCircleTest.vshost.exe
│   ├── Form1.cs
│   ├── Form1.Designer.cs
│   ├── Form1.resx
│   ├── Form2.cs
│   ├── Form2.Designer.cs
│   ├── Form2.resx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── Refactor
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── TempPE
│   │   │   ├── WaitingCircleTest.csproj.GenerateResource.Cache
│   │   │   ├── WaitingCircleTest.exe
│   │   │   ├── WaitingCircleTest.Form1.resources
│   │   │   ├── WaitingCircleTest.Form2.resources
│   │   │   ├── WaitingCircleTest.pdb
│   │   │   └── WaitingCircleTest.Properties.Resources.resources
│   │   └── WaitingCircleTest.csproj.FileList.txt
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   └── WaitingCircleTest.csproj
├── Chapter4
│   ├── CircularStamp
│   │   ├── CircularStamp
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── CircularStamp.exe
│   │   │   │   │   ├── CircularStamp.pdb
│   │   │   │   │   ├── CircularStamp.vshost.exe
│   │   │   │   │   ├── Shape.dll
│   │   │   │   │   └── Shape.pdb
│   │   │   │   └── Release
│   │   │   │   ├── CircularStamp.exe
│   │   │   │   ├── CircularStamp.pdb
│   │   │   │   ├── CircularStamp.vshost.exe
│   │   │   │   ├── Shape.dll
│   │   │   │   └── Shape.pdb
│   │   │   ├── CircularStamp.cs
│   │   │   ├── CircularStamp.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Form2.cs
│   │   │   ├── Form2.Designer.cs
│   │   │   ├── Form2.resx
│   │   │   ├── obj
│   │   │   │   ├── CircularStamp.csproj.FileList.txt
│   │   │   │   ├── Debug
│   │   │   │   │   ├── CircularStamp.csproj.GenerateResource.Cache
│   │   │   │   │   ├── CircularStamp.exe
│   │   │   │   │   ├── CircularStamp.Form1.resources
│   │   │   │   │   ├── CircularStamp.Form2.resources
│   │   │   │   │   ├── CircularStamp.pdb
│   │   │   │   │   ├── CircularStamp.Properties.Resources.resources
│   │   │   │   │   ├── Refactor
│   │   │   │   │   └── TempPE
│   │   │   │   └── Release
│   │   │   │   ├── CircularStamp.csproj.GenerateResource.Cache
│   │   │   │   ├── CircularStamp.exe
│   │   │   │   ├── CircularStamp.Form1.resources
│   │   │   │   ├── CircularStamp.Form2.resources
│   │   │   │   ├── CircularStamp.pdb
│   │   │   │   ├── CircularStamp.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── CircularStamp.sln
│   │   └── CircularStamp.suo
│   ├── LiteNote
│   │   ├── LiteNote
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── LiteNote.exe
│   │   │   │   ├── LiteNote.pdb
│   │   │   │   └── LiteNote.vshost.exe
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── LiteNote.csproj
│   │   │   ├── NotePrintDocument.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── LiteNote.csproj.GenerateResource.Cache
│   │   │   │   │   ├── LiteNote.exe
│   │   │   │   │   ├── LiteNote.Form1.resources
│   │   │   │   │   ├── LiteNote.pdb
│   │   │   │   │   ├── LiteNote.Properties.Resources.resources
│   │   │   │   │   ├── Refactor
│   │   │   │   │   └── TempPE
│   │   │   │   └── LiteNote.csproj.FileList.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── LiteNote.sln
│   │   └── LiteNote.suo
│   ├── MapTextTag
│   │   ├── MapTextTag
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── MapTextTag.exe
│   │   │   │   │   ├── MapTextTag.exe.CodeAnalysisLog.xml
│   │   │   │   │   ├── MapTextTag.exe.lastcodeanalysissucceeded
│   │   │   │   │   ├── MapTextTag.pdb
│   │   │   │   │   └── MapTextTag.vshost.exe
│   │   │   │   └── Release
│   │   │   │   ├── Demo.smi
│   │   │   │   ├── MapTextTag.exe
│   │   │   │   ├── MapTextTag.pdb
│   │   │   │   └── MapTextTag.vshost.exe
│   │   │   ├── ClassDiagram1.cd
│   │   │   ├── ClassDiagram2.cd
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── MapInfo.cs
│   │   │   ├── MapTextTag.csproj
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── MapTextTag.csproj.GenerateResource.Cache
│   │   │   │   │   ├── MapTextTag.exe
│   │   │   │   │   ├── MapTextTag.Form1.resources
│   │   │   │   │   ├── MapTextTag.Profiler.resources
│   │   │   │   │   ├── MapTextTag.Properties.Resources.resources
│   │   │   │   │   ├── Refactor
│   │   │   │   │   └── TempPE
│   │   │   │   ├── MapTextTag.csproj.FileList.txt
│   │   │   │   └── Release
│   │   │   │   ├── MapTextTag.csproj.GenerateResource.Cache
│   │   │   │   ├── MapTextTag.exe
│   │   │   │   ├── MapTextTag.Form1.resources
│   │   │   │   ├── MapTextTag.pdb
│   │   │   │   ├── MapTextTag.Profiler.resources
│   │   │   │   ├── MapTextTag.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   ├── Profiler.cs
│   │   │   ├── Profiler.designer.cs
│   │   │   ├── Profiler.resx
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── MapTextTag.sln
│   │   └── MapTextTag.suo
│   ├── ReportPrint
│   │   ├── ReportPrint
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── ReportPrint.exe
│   │   │   │   ├── ReportPrint.pdb
│   │   │   │   └── ReportPrint.vshost.exe
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── frmConfig.cs
│   │   │   ├── frmConfig.Designer.cs
│   │   │   ├── frmConfig.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Refactor
│   │   │   │   │   ├── ReportPrint.csproj.GenerateResource.Cache
│   │   │   │   │   ├── ReportPrint.exe
│   │   │   │   │   ├── ReportPrint.Form1.resources
│   │   │   │   │   ├── ReportPrint.frmConfig.resources
│   │   │   │   │   ├── ReportPrint.pdb
│   │   │   │   │   ├── ReportPrint.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   └── ReportPrint.csproj.FileList.txt
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── ReportPrint.csproj
│   │   │   └── Resources
│   │   │   └── Logo.jpg
│   │   ├── ReportPrint.sln
│   │   └── ReportPrint.suo
│   ├── StringTrimmingDemo
│   │   ├── StringTrimmingDemo
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── StringTrimmingDemo.exe
│   │   │   │   ├── StringTrimmingDemo.pdb
│   │   │   │   └── StringTrimmingDemo.vshost.exe
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Refactor
│   │   │   │   │   ├── StringTrimmingDemo.csproj.GenerateResource.Cache
│   │   │   │   │   ├── StringTrimmingDemo.exe
│   │   │   │   │   ├── StringTrimmingDemo.Form1.resources
│   │   │   │   │   ├── StringTrimmingDemo.pdb
│   │   │   │   │   ├── StringTrimmingDemo.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── StringTrimmingDemo.csproj.FileList.txt
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   └── StringTrimmingDemo.csproj
│   │   ├── StringTrimmingDemo.sln
│   │   └── StringTrimmingDemo.suo
│   ├── Text3D
│   │   ├── Text3D
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Text3D.exe
│   │   │   │   ├── Text3D.pdb
│   │   │   │   └── Text3D.vshost.exe
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── TempPE
│   │   │   │   │   ├── Text3D.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Text3D.exe
│   │   │   │   │   ├── Text3D.Form1.resources
│   │   │   │   │   ├── Text3D.pdb
│   │   │   │   │   └── Text3D.Properties.Resources.resources
│   │   │   │   └── Text3D.csproj.FileList.txt
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   └── Text3D.csproj
│   │   ├── Text3D.sln
│   │   └── Text3D.suo
│   ├── TextLayout
│   │   ├── TextLayout
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── TextLayout.exe
│   │   │   │   ├── TextLayout.pdb
│   │   │   │   └── TextLayout.vshost.exe
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── TempPE
│   │   │   │   │   ├── TextLayout.csproj.GenerateResource.Cache
│   │   │   │   │   ├── TextLayout.exe
│   │   │   │   │   ├── TextLayout.Form1.resources
│   │   │   │   │   ├── TextLayout.pdb
│   │   │   │   │   └── TextLayout.Properties.Resources.resources
│   │   │   │   └── TextLayout.csproj.FileList.txt
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   └── TextLayout.csproj
│   │   ├── TextLayout.sln
│   │   └── TextLayout.suo
│   └── TextMearsuring
│   ├── TextMearsuring
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── TextMearsuring.exe
│   │   │   ├── TextMearsuring.pdb
│   │   │   └── TextMearsuring.vshost.exe
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── TempPE
│   │   │   │   ├── TextMearsuring.csproj.GenerateResource.Cache
│   │   │   │   ├── TextMearsuring.exe
│   │   │   │   ├── TextMearsuring.Form1.resources
│   │   │   │   ├── TextMearsuring.pdb
│   │   │   │   └── TextMearsuring.Properties.Resources.resources
│   │   │   └── TextMearsuring.csproj.FileList.txt
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── TextMearsuring.csproj
│   ├── TextMearsuring.sln
│   └── TextMearsuring.suo
├── Chapter5
│   ├── Bubbles
│   │   ├── Bubbles
│   │   │   ├── app.config
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Bubbles.exe
│   │   │   │   │   ├── Bubbles.exe.config
│   │   │   │   │   ├── Bubbles.pdb
│   │   │   │   │   ├── Bubbles.vshost.exe
│   │   │   │   │   ├── Bubbles.vshost.exe.config
│   │   │   │   │   ├── ColorPane.exe
│   │   │   │   │   ├── ColorPane.pdb
│   │   │   │   │   ├── MediaPlayer.dll
│   │   │   │   │   ├── MediaPlayer.pdb
│   │   │   │   │   ├── Shape.dll
│   │   │   │   │   └── Shape.pdb
│   │   │   │   └── Release
│   │   │   │   ├── Bubbles.exe
│   │   │   │   ├── Bubbles.exe.config
│   │   │   │   ├── Bubbles.pdb
│   │   │   │   ├── Bubbles.vshost.exe
│   │   │   │   ├── Bubbles.vshost.exe.config
│   │   │   │   ├── ColorPane.exe
│   │   │   │   ├── ColorPane.pdb
│   │   │   │   ├── MediaPlayer.dll
│   │   │   │   ├── MediaPlayer.pdb
│   │   │   │   ├── Shape.dll
│   │   │   │   └── Shape.pdb
│   │   │   ├── Bubble.cs
│   │   │   ├── BubbleManager.cs
│   │   │   ├── BubbleSaverForm.cs
│   │   │   ├── BubbleSaverForm.designer.cs
│   │   │   ├── BubbleSaverForm.resx
│   │   │   ├── Bubbles.csproj
│   │   │   ├── Bubbles.csproj.user
│   │   │   ├── frmConfig.cs
│   │   │   ├── frmConfig.designer.cs
│   │   │   ├── frmConfig.resx
│   │   │   ├── NativeMethods.cs
│   │   │   ├── obj
│   │   │   │   ├── Bubbles.csproj.FileList.txt
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Bubbles.BubbleSaverForm.resources
│   │   │   │   │   ├── Bubbles.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Bubbles.exe
│   │   │   │   │   ├── Bubbles.frmConfig.resources
│   │   │   │   │   ├── Bubbles.pdb
│   │   │   │   │   ├── Bubbles.Properties.Resources.resources
│   │   │   │   │   ├── Refactor
│   │   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   │   └── TempPE
│   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   └── Release
│   │   │   │   ├── Bubbles.BubbleSaverForm.resources
│   │   │   │   ├── Bubbles.csproj.GenerateResource.Cache
│   │   │   │   ├── Bubbles.exe
│   │   │   │   ├── Bubbles.frmConfig.resources
│   │   │   │   ├── Bubbles.pdb
│   │   │   │   ├── Bubbles.Properties.Resources.resources
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   └── Resources
│   │   │   ├── music.gif
│   │   │   ├── right.gif
│   │   │   └── Thumbs.db
│   │   ├── Bubbles.sln
│   │   └── Bubbles.suo
│   ├── GIFPlayer
│   │   ├── GIFPlayer
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── GIFPlayer.exe
│   │   │   │   ├── GIFPlayer.pdb
│   │   │   │   └── GIFPlayer.vshost.exe
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GIFPlayer.cs
│   │   │   ├── GIFPlayer.csproj
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Animation.Form1.resources
│   │   │   │   │   ├── Animation.Properties.Resources.resources
│   │   │   │   │   ├── GIFPlayer.csproj.GenerateResource.Cache
│   │   │   │   │   ├── GIFPlayer.exe
│   │   │   │   │   ├── GIFPlayer.pdb
│   │   │   │   │   ├── Refactor
│   │   │   │   │   └── TempPE
│   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   └── GIFPlayer.csproj.FileList.txt
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   └── Resources
│   │   │   ├── 20075291573954216.gif
│   │   │   ├── right.gif
│   │   │   └── square.gif
│   │   ├── GIFPlayer.sln
│   │   └── GIFPlayer.suo
│   ├── ILinkUp
│   │   ├── ILinkUp
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── ColorPane.exe
│   │   │   │   │   ├── ColorPane.pdb
│   │   │   │   │   ├── ILinkUp.exe
│   │   │   │   │   ├── ILinkUp.pdb
│   │   │   │   │   └── ILinkUp.vshost.exe
│   │   │   │   └── Release
│   │   │   │   ├── ColorPane.exe
│   │   │   │   ├── ColorPane.pdb
│   │   │   │   ├── ILinkUp.exe
│   │   │   │   ├── ILinkUp.pdb
│   │   │   │   └── ILinkUp.vshost.exe
│   │   │   ├── ClassDiagram1.cd
│   │   │   ├── frmMain.cs
│   │   │   ├── frmMain.designer.cs
│   │   │   ├── frmMain.resx
│   │   │   ├── frmOption.cs
│   │   │   ├── frmOption.Designer.cs
│   │   │   ├── frmOption.resx
│   │   │   ├── GameBoard.cs
│   │   │   ├── ILinkUp.csproj
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── ILinkUp.csproj.GenerateResource.Cache
│   │   │   │   │   ├── ILinkUp.exe
│   │   │   │   │   ├── ILinkUp.frmMain.resources
│   │   │   │   │   ├── ILinkUp.frmOption.resources
│   │   │   │   │   ├── ILinkUp.pdb
│   │   │   │   │   ├── ILinkUp.Properties.Resources.resources
│   │   │   │   │   ├── Refactor
│   │   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   │   └── TempPE
│   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   ├── ILinkUp.csproj.FileListAbsolute.txt
│   │   │   │   ├── ILinkUp.csproj.FileList.txt
│   │   │   │   └── Release
│   │   │   │   ├── ILinkUp.csproj.GenerateResource.Cache
│   │   │   │   ├── ILinkUp.exe
│   │   │   │   ├── ILinkUp.frmMain.resources
│   │   │   │   ├── ILinkUp.frmOption.resources
│   │   │   │   ├── ILinkUp.pdb
│   │   │   │   ├── ILinkUp.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   └── Resources
│   │   │   └── 2006331133451239.jpg
│   │   ├── ILinkUp.sln
│   │   ├── ILinkUp.suo
│   │   └── 图像
│   │   ├── Suit1
│   │   │   ├── Thumbs.db
│   │   │   ├── United_Campaignss.png
│   │   │   ├── United_Rentalss.png
│   │   │   ├── United_Van_Liness.png
│   │   │   ├── United_Ways.png
│   │   │   ├── UniverByts.png
│   │   │   ├── Universals.png
│   │   │   ├── Universite_Henri_Poincares.png
│   │   │   ├── Univisions.png
│   │   │   ├── Unocal76s.png
│   │   │   ├── Unomats.png
│   │   │   ├── Unona_Fonds.png
│   │   │   ├── Upak-NNs.png
│   │   │   ├── Upofloors.png
│   │   │   ├── Uralans.png
│   │   │   ├── Uralmashs.png
│   │   │   ├── Urozhajs.png
│   │   │   ├── Uspeh_Motovs.png
│   │   │   ├── Utess.png
│   │   │   ├── Uvica_Vashkevichs.png
│   │   │   ├── Uzbekistans.png
│   │   │   ├── Vagonniks.png
│   │   │   ├── VAKs.png
│   │   │   ├── Valmets.png
│   │   │   ├── Valvoline_2s.png
│   │   │   ├── Valvolines.png
│   │   │   ├── Vamits.png
│   │   │   ├── Vandas.png
│   │   │   ├── Variants.png
│   │   │   ├── Varnas.png
│   │   │   ├── Varyas.png
│   │   │   ├── Vaselines.png
│   │   │   ├── Vash_Doms.png
│   │   │   ├── VAZs.png
│   │   │   ├── Veches.png
│   │   │   ├── Vectavirs.png
│   │   │   ├── Vegas.png
│   │   │   ├── VehiTechs.png
│   │   │   ├── Vejders.png
│   │   │   ├── Veks.png
│   │   │   ├── Vektors.png
│   │   │   ├── Veloss.png
│   │   │   ├── Venss.png
│   │   │   ├── Ventas.png
│   │   │   ├── Vera_Ltd_s.png
│   │   │   ├── Verbatims.png
│   │   │   ├── Veresks.png
│   │   │   ├── Veritys.png
│   │   │   ├── Vermanis.png
│   │   │   ├── Vernas.png
│   │   │   ├── Vertigos.png
│   │   │   ├── Vesna_Souzs.png
│   │   │   ├── Vessolinks.png
│   │   │   ├── Vests.png
│   │   │   ├── VHSs.png
│   │   │   ├── Victoria_Wines.png
│   │   │   ├── Vidal_Sassoons.png
│   │   │   ├── Video_Guides.png
│   │   │   ├── Video_Looks.png
│   │   │   ├── VID_TVs.png
│   │   │   ├── Viessmanns.png
│   │   │   ├── ViewSonics.png
│   │   │   ├── Vigit_Centers.png
│   │   │   ├── Vigors.png
│   │   │   ├── Vikas.png
│   │   │   ├── Vikings.png
│   │   │   ├── Villas_Sur_L_Iles.png
│   │   │   ├── VinAgroProms.png
│   │   │   ├── Vinaps.png
│   │   │   ├── Vindexs.png
│   │   │   ├── Vingas.png
│   │   │   ├── Virgins.png
│   │   │   ├── ViRs.png
│   │   │   ├── Virtus_2s.png
│   │   │   ├── Virtuss.png
│   │   │   ├── VISAs.png
│   │   │   ├── Visems.png
│   │   │   ├── Visionquests.png
│   │   │   ├── VisServices.png
│   │   │   ├── Vistas.png
│   │   │   └── Vists.png
│   │   └── Suit2
│   │   ├── Air Tank and Guage.png
│   │   ├── Autocross Calendar.png
│   │   ├── Brake.png
│   │   ├── Cone Family.png
│   │   ├── Cone Penalty.png
│   │   ├── Cone.png
│   │   ├── Descr.WD3
│   │   ├── Fire Extinguisher.png
│   │   ├── Flag Black.png
│   │   ├── Flag BlueYellow.png
│   │   ├── Flag Checkered.png
│   │   ├── Flag Green.png
│   │   ├── Flag Red.png
│   │   ├── Flag RedYellow.png
│   │   ├── Flag White.png
│   │   ├── Flag Yellow.png
│   │   ├── Garage.png
│   │   ├── Gloves.png
│   │   ├── Helmet Full Face.png
│   │   ├── Helmet Open Face.png
│   │   ├── Hydraulic Jack.png
│   │   ├── Italian Shifter.png
│   │   ├── Orange Shirt Guy.png
│   │   ├── Playground.png
│   │   ├── Race Tire.png
│   │   ├── Rally TSD.png
│   │   ├── Rulebook.png
│   │   ├── Sign Hairpin.png
│   │   ├── Sign Slalom.png
│   │   ├── Steering Wheel F1.png
│   │   ├── Steering Wheel.png
│   │   ├── Thumbs.db
│   │   └── Timer.png
│   └── SlideShowEffect
│   ├── SlideShowEffect
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── SlideShowEffect.exe
│   │   │   │   ├── SlideShowEffect.pdb
│   │   │   │   └── SlideShowEffect.vshost.exe
│   │   │   └── Release
│   │   │   ├── SlideShowEffect.exe
│   │   │   ├── SlideShowEffect.pdb
│   │   │   └── SlideShowEffect.vshost.exe
│   │   ├── Form1.cs
│   │   ├── Form1.designer.cs
│   │   ├── Form1.resx
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── Refactor
│   │   │   │   ├── SlideShowEffect.csproj.GenerateResource.Cache
│   │   │   │   ├── SlideShowEffect.exe
│   │   │   │   ├── SlideShowEffect.Form1.resources
│   │   │   │   ├── SlideShowEffect.pdb
│   │   │   │   ├── SlideShowEffect.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Release
│   │   │   │   ├── Refactor
│   │   │   │   ├── SlideShowEffect.csproj.GenerateResource.Cache
│   │   │   │   ├── SlideShowEffect.exe
│   │   │   │   ├── SlideShowEffect.Form1.resources
│   │   │   │   ├── SlideShowEffect.pdb
│   │   │   │   ├── SlideShowEffect.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   └── SlideShowEffect.csproj.FileList.txt
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Resources
│   │   │   ├── 20063311334352851.jpg
│   │   │   ├── 2006331133435285.jpg
│   │   │   └── 屏保鱼.jpg
│   │   ├── SlideShowEffect.csproj
│   │   ├── SlideViewController.cs
│   │   └── SlideView.cs
│   ├── SlideShowEffect.sln
│   └── SlideShowEffect.suo
├── Chapter6
│   ├── FractalLab
│   │   ├── FractalLab
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── FractalLab.exe
│   │   │   │   │   ├── FractalLab.pdb
│   │   │   │   │   ├── FractalLab.vshost.exe
│   │   │   │   │   ├── Shape.dll
│   │   │   │   │   └── Shape.pdb
│   │   │   │   └── Release
│   │   │   │   ├── FractalLab.exe
│   │   │   │   ├── FractalLab.pdb
│   │   │   │   ├── FractalLab.vshost.exe
│   │   │   │   ├── Shape.dll
│   │   │   │   └── Shape.pdb
│   │   │   ├── FractalLab.csproj
│   │   │   ├── frmConfig.cs
│   │   │   ├── frmConfig.Designer.cs
│   │   │   ├── frmConfig.resx
│   │   │   ├── frmMain.cs
│   │   │   ├── frmMain.Designer.cs
│   │   │   ├── frmMain.resx
│   │   │   ├── KochCurve.cs
│   │   │   ├── LSystem.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── FractalLab.csproj.GenerateResource.Cache
│   │   │   │   │   ├── FractalLab.exe
│   │   │   │   │   ├── FractalLab.frmConfig.resources
│   │   │   │   │   ├── FractalLab.frmMain.resources
│   │   │   │   │   ├── FractalLab.pdb
│   │   │   │   │   ├── FractalLab.Properties.Resources.resources
│   │   │   │   │   ├── Refactor
│   │   │   │   │   └── TempPE
│   │   │   │   ├── FractalLab.csproj.FileList.txt
│   │   │   │   └── Release
│   │   │   │   ├── FractalLab.csproj.GenerateResource.Cache
│   │   │   │   ├── FractalLab.exe
│   │   │   │   ├── FractalLab.frmConfig.resources
│   │   │   │   ├── FractalLab.frmMain.resources
│   │   │   │   ├── FractalLab.pdb
│   │   │   │   ├── FractalLab.Properties.Resources.resources
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   └── TempPE
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── FractalLab.sln
│   │   └── FractalLab.suo
│   ├── FractalMax
│   │   ├── FractalMax
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── ColorPane.exe
│   │   │   │   │   ├── FractalMax.exe
│   │   │   │   │   ├── FractalMax.pdb
│   │   │   │   │   ├── FractalMax.vshost.exe
│   │   │   │   │   ├── Mathematics.dll
│   │   │   │   │   └── Mathematics.pdb
│   │   │   │   └── Release
│   │   │   │   ├── ColorPane.exe
│   │   │   │   ├── FractalMax.exe
│   │   │   │   ├── FractalMax.pdb
│   │   │   │   ├── FractalMax.vshost.exe
│   │   │   │   ├── Mathematics.dll
│   │   │   │   └── Mathematics.pdb
│   │   │   ├── FractalMax.csproj
│   │   │   ├── frmAbout.cs
│   │   │   ├── frmAbout.Designer.cs
│   │   │   ├── frmAbout.resx
│   │   │   ├── frmConfig.cs
│   │   │   ├── frmConfig.Designer.cs
│   │   │   ├── frmConfig.resx
│   │   │   ├── frmOutput.cs
│   │   │   ├── frmOutput.Designer.cs
│   │   │   ├── frmOutput.resx
│   │   │   ├── mdiMain.cs
│   │   │   ├── mdiMain.Designer.cs
│   │   │   ├── mdiMain.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── FractalMax.csproj.GenerateResource.Cache
│   │   │   │   │   ├── FractalMax.exe
│   │   │   │   │   ├── FractalMax.frmAbout.resources
│   │   │   │   │   ├── FractalMax.frmConfig.resources
│   │   │   │   │   ├── FractalMax.frmOutput.resources
│   │   │   │   │   ├── FractalMax.mdiMain.resources
│   │   │   │   │   ├── FractalMax.pdb
│   │   │   │   │   ├── FractalMax.Properties.Resources.resources
│   │   │   │   │   ├── Refactor
│   │   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   │   └── TempPE
│   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   ├── FractalMax.csproj.FileList.txt
│   │   │   │   └── Release
│   │   │   │   ├── FractalMax.csproj.GenerateResource.Cache
│   │   │   │   ├── FractalMax.exe
│   │   │   │   ├── FractalMax.frmAbout.resources
│   │   │   │   ├── FractalMax.frmConfig.resources
│   │   │   │   ├── FractalMax.frmOutput.resources
│   │   │   │   ├── FractalMax.mdiMain.resources
│   │   │   │   ├── FractalMax.pdb
│   │   │   │   ├── FractalMax.Properties.Resources.resources
│   │   │   │   ├── Refactor
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Profile.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Renderer.cs
│   │   │   └── Resources
│   │   │   ├── About.png
│   │   │   ├── camera_调整大小.png
│   │   │   ├── find_调整大小.png
│   │   │   ├── floppy_调整大小.png
│   │   │   ├── home_调整大小.png
│   │   │   ├── info_调整大小.png
│   │   │   ├── painter_调整大小.png
│   │   │   ├── player_调整大小.png
│   │   │   ├── Refresh_调整大小.png
│   │   │   └── Thumbs.db
│   │   ├── FractalMax.sln
│   │   ├── FractalMax.suo
│   │   └── Mathematics
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Mathematics.dll
│   │   │   │   └── Mathematics.pdb
│   │   │   └── Release
│   │   │   ├── Mathematics.dll
│   │   │   └── Mathematics.pdb
│   │   ├── Complex.cs
│   │   ├── Mathematics.csproj
│   │   ├── Newton.cs
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── Mathematics.csproj.GenerateResource.Cache
│   │   │   │   ├── Mathematics.dll
│   │   │   │   ├── Mathematics.pdb
│   │   │   │   ├── Mathematics.Properties.Resources.resources
│   │   │   │   ├── Refactor
│   │   │   │   │   └── Mathematics.dll
│   │   │   │   └── TempPE
│   │   │   ├── Mathematics.csproj.FileList.txt
│   │   │   └── Release
│   │   │   ├── Mathematics.csproj.GenerateResource.Cache
│   │   │   ├── Mathematics.dll
│   │   │   ├── Mathematics.pdb
│   │   │   ├── Mathematics.Properties.Resources.resources
│   │   │   ├── Refactor
│   │   │   │   └── Mathematics.dll
│   │   │   └── TempPE
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   └── Mandelbrot
│   ├── Mandelbrot
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Mandelbrot.exe
│   │   │   │   ├── Mandelbrot.pdb
│   │   │   │   └── Mandelbrot.vshost.exe
│   │   │   └── Release
│   │   │   ├── Mandelbrot.exe
│   │   │   ├── Mandelbrot.pdb
│   │   │   └── Mandelbrot.vshost.exe
│   │   ├── ClassDiagram1.cd
│   │   ├── Complex.cs
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── Mandelbrot.cs
│   │   ├── Mandelbrot.csproj
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── Mandelbrot.csproj.GenerateResource.Cache
│   │   │   │   ├── Mandelbrot.exe
│   │   │   │   ├── Mandelbrot.Form1.resources
│   │   │   │   ├── Mandelbrot.pdb
│   │   │   │   ├── Mandelbrot.Properties.Resources.resources
│   │   │   │   ├── Refactor
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Mandelbrot.csproj.FileList.txt
│   │   │   └── Release
│   │   │   ├── Mandelbrot.csproj.GenerateResource.Cache
│   │   │   ├── Mandelbrot.exe
│   │   │   ├── Mandelbrot.Form1.resources
│   │   │   ├── Mandelbrot.pdb
│   │   │   ├── Mandelbrot.Properties.Resources.resources
│   │   │   ├── Refactor
│   │   │   └── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── Program.cs
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Mandelbrot.sln
│   └── Mandelbrot.suo
└── Chapter7
├── CuteImage
│   ├── CuteImage
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── ColorPane.exe
│   │   │   │   ├── ColorPane.pdb
│   │   │   │   ├── CuteImage.application
│   │   │   │   ├── CuteImage.exe
│   │   │   │   ├── CuteImage.exe.manifest
│   │   │   │   ├── CuteImage.pdb
│   │   │   │   ├── CuteImage.vshost.application
│   │   │   │   ├── CuteImage.vshost.exe
│   │   │   │   ├── CuteImage.vshost.exe.manifest
│   │   │   │   ├── FractalMax.exe
│   │   │   │   ├── FractalMax.pdb
│   │   │   │   ├── Mathematics.dll
│   │   │   │   ├── Mathematics.pdb
│   │   │   │   ├── NumberBox.dll
│   │   │   │   ├── NumberBox.pdb
│   │   │   │   ├── Shape.dll
│   │   │   │   └── Shape.pdb
│   │   │   └── Release
│   │   │   ├── ColorPane.exe
│   │   │   ├── ColorPane.pdb
│   │   │   ├── CuteImage.application
│   │   │   ├── CuteImage.exe
│   │   │   ├── CuteImage.exe.manifest
│   │   │   ├── CuteImage.pdb
│   │   │   ├── CuteImage.vshost.application
│   │   │   ├── CuteImage.vshost.exe
│   │   │   ├── CuteImage.vshost.exe.manifest
│   │   │   ├── FractalMax.exe
│   │   │   ├── FractalMax.pdb
│   │   │   ├── Mathematics.dll
│   │   │   ├── Mathematics.pdb
│   │   │   ├── NumberBox.dll
│   │   │   ├── NumberBox.pdb
│   │   │   ├── Shape.dll
│   │   │   └── Shape.pdb
│   │   ├── Complex.cs
│   │   ├── CuteImage.csproj
│   │   ├── CuteImage.csproj.user
│   │   ├── Exif
│   │   │   ├── Exif.cs
│   │   │   ├── ExifTagID.cs
│   │   │   ├── ExifTagType.cs
│   │   │   └── OptionValueAtrribute.cs
│   │   ├── frmContrast.cs
│   │   ├── frmContrast.Designer.cs
│   │   ├── frmContrast.resx
│   │   ├── frmConvolution.cs
│   │   ├── frmConvolution.Designer.cs
│   │   ├── frmConvolution.resx
│   │   ├── frmFractal.cs
│   │   ├── frmFractal.Designer.cs
│   │   ├── frmFractal.resx
│   │   ├── frmFrostedGlassEffect.cs
│   │   ├── frmFrostedGlassEffect.Designer.cs
│   │   ├── frmFrostedGlassEffect.resx
│   │   ├── frmGamma.cs
│   │   ├── frmGamma.Designer.cs
│   │   ├── frmGamma.resx
│   │   ├── frmHistogram.cs
│   │   ├── frmHistogram.Designer.cs
│   │   ├── frmHistogram.resx
│   │   ├── frmHSB.cs
│   │   ├── frmHSB.Designer.cs
│   │   ├── frmHSB.resx
│   │   ├── frmLayerMgr.cs
│   │   ├── frmLayerMgr.Designer.cs
│   │   ├── frmLayerMgr.resx
│   │   ├── frmMatrix.cs
│   │   ├── frmMatrix.Designer.cs
│   │   ├── frmMatrix.resx
│   │   ├── frmMdiMain.cs
│   │   ├── frmMdiMain.Designer.cs
│   │   ├── frmMdiMain.resx
│   │   ├── frmModifySelect.cs
│   │   ├── frmModifySelect.Designer.cs
│   │   ├── frmModifySelect.resx
│   │   ├── frmNeon.cs
│   │   ├── frmNeon.Designer.cs
│   │   ├── frmNeon.resx
│   │   ├── frmPicture.cs
│   │   ├── frmPicture.Designer.cs
│   │   ├── frmPicture.resx
│   │   ├── frmProperty.cs
│   │   ├── frmProperty.Designer.cs
│   │   ├── frmProperty.resx
│   │   ├── frmRelif.cs
│   │   ├── frmRelif.Designer.cs
│   │   ├── frmRelif.resx
│   │   ├── frmSketchEffect.cs
│   │   ├── frmSketchEffect.Designer.cs
│   │   ├── frmSketchEffect.resx
│   │   ├── frmSoften.cs
│   │   ├── frmSoften.Designer.cs
│   │   ├── frmSoften.resx
│   │   ├── Layer.cs
│   │   ├── obj
│   │   │   ├── CuteImage.csproj.FileList.txt
│   │   │   ├── Debug
│   │   │   │   ├── CuteImage.application
│   │   │   │   ├── CuteImage.csproj.GenerateResource.Cache
│   │   │   │   ├── CuteImage.exe
│   │   │   │   ├── CuteImage.exe.manifest
│   │   │   │   ├── CuteImage.frmContrast.resources
│   │   │   │   ├── CuteImage.frmConvolution.resources
│   │   │   │   ├── CuteImage.frmFractal.resources
│   │   │   │   ├── CuteImage.frmFrostedGlassEffect.resources
│   │   │   │   ├── CuteImage.frmGamma.resources
│   │   │   │   ├── CuteImage.frmHistogram.resources
│   │   │   │   ├── CuteImage.frmHSB.resources
│   │   │   │   ├── CuteImage.frmLayerMgr.resources
│   │   │   │   ├── CuteImage.frmMatrix.resources
│   │   │   │   ├── CuteImage.frmMdiMain.resources
│   │   │   │   ├── CuteImage.frmModifySelect.resources
│   │   │   │   ├── CuteImage.frmNeon.resources
│   │   │   │   ├── CuteImage.frmPicture.resources
│   │   │   │   ├── CuteImage.frmProperty.resources
│   │   │   │   ├── CuteImage.frmRelif.resources
│   │   │   │   ├── CuteImage.frmSketchEffect.resources
│   │   │   │   ├── CuteImage.frmSoften.resources
│   │   │   │   ├── CuteImage.pdb
│   │   │   │   ├── CuteImage.Properties.Resources.resources
│   │   │   │   ├── CuteImage.TrustInfo.xml
│   │   │   │   ├── CuteImage.userLayers.resources
│   │   │   │   ├── Refactor
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   └── Release
│   │   │   ├── CuteImage.application
│   │   │   ├── CuteImage.csproj.GenerateResource.Cache
│   │   │   ├── CuteImage.exe
│   │   │   ├── CuteImage.exe.manifest
│   │   │   ├── CuteImage.frmContrast.resources
│   │   │   ├── CuteImage.frmConvolution.resources
│   │   │   ├── CuteImage.frmFractal.resources
│   │   │   ├── CuteImage.frmFrostedGlassEffect.resources
│   │   │   ├── CuteImage.frmGamma.resources
│   │   │   ├── CuteImage.frmHistogram.resources
│   │   │   ├── CuteImage.frmHSB.resources
│   │   │   ├── CuteImage.frmLayerMgr.resources
│   │   │   ├── CuteImage.frmMatrix.resources
│   │   │   ├── CuteImage.frmMdiMain.resources
│   │   │   ├── CuteImage.frmModifySelect.resources
│   │   │   ├── CuteImage.frmNeon.resources
│   │   │   ├── CuteImage.frmPicture.resources
│   │   │   ├── CuteImage.frmProperty.resources
│   │   │   ├── CuteImage.frmRelif.resources
│   │   │   ├── CuteImage.frmSketchEffect.resources
│   │   │   ├── CuteImage.frmSoften.resources
│   │   │   ├── CuteImage.pdb
│   │   │   ├── CuteImage.Properties.Resources.resources
│   │   │   ├── CuteImage.TrustInfo.xml
│   │   │   ├── CuteImage.userLayers.resources
│   │   │   ├── Refactor
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   └── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── app.manifest
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── ReColoring
│   │   │   ├── Colorer.cs
│   │   │   ├── Enums.cs
│   │   │   └── Histogram.cs
│   │   ├── Resources
│   │   │   ├── bb.jpg
│   │   │   ├── Mathematics.dll
│   │   │   └── Thumbs.db
│   │   ├── Tools
│   │   │   ├── ColorBlendModes.cs
│   │   │   ├── Convolve.cs
│   │   │   ├── EffectFilter.cs
│   │   │   ├── Feather.cs
│   │   │   └── SelectionOps.cs
│   │   ├── Transform
│   │   │   ├── ComplexImage.cs
│   │   │   ├── CosineTransform.cs
│   │   │   └── FourierTransform.cs
│   │   ├── userLayers.cs
│   │   ├── userLayers.Designer.cs
│   │   └── userLayers.resx
│   ├── CuteImage.sln
│   └── CuteImage.suo
├── Images
│   ├── Baboon24.png
│   ├── Barbara24.png
│   ├── Lenna.png
│   ├── Peppers2.png
│   ├── Peppers.png
│   ├── Thumbs.db
│   ├── Zelda24.png
│   ├── 图层混合测试1.png
│   ├── 图层混合测试2.png
│   ├── 混合图层1.jpg
│   ├── 混合图层2.jpg
│   ├── 金泰熙2.jpg
│   ├── 金泰熙3.jpg
│   ├── 金泰熙4.jpg
│   └── 金泰熙.jpg
└── PocketColorCombo
├── PocketColorCombo
│   ├── bin
│   │   ├── Debug
│   │   │   ├── PocketColorCombo.exe
│   │   │   └── PocketColorCombo.pdb
│   │   └── Release
│   │   ├── PocketColorCombo.exe
│   │   └── PocketColorCombo.pdb
│   ├── ColorPicker.cs
│   ├── Form1.cs
│   ├── Form1.Designer.cs
│   ├── Form1.resx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── PocketColorCombo.csproj.GenerateResource.Cache
│   │   │   ├── PocketColorCombo.exe
│   │   │   ├── PocketColorCombo.Form1.resources
│   │   │   ├── PocketColorCombo.pdb
│   │   │   ├── PocketColorCombo.Properties.Resources.resources
│   │   │   └── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── PocketColorCombo.csproj.FileList.txt
│   │   └── Release
│   │   ├── PocketColorCombo.csproj.GenerateResource.Cache
│   │   ├── PocketColorCombo.exe
│   │   ├── PocketColorCombo.Form1.resources
│   │   ├── PocketColorCombo.pdb
│   │   ├── PocketColorCombo.Properties.Resources.resources
│   │   └── TempPE
│   │   └── Properties.Resources.Designer.cs.dll
│   ├── PocketColorCombo.csproj
│   ├── PocketColorCombo.csproj.user
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   └── Resources.resx
│   └── Resources
│   └── down.gif
├── PocketColorCombo.sln
└── PocketColorCombo.suo

482 directories, 1605 files

标签:

实例下载地址

《GDI+高级编程》附书源代码 免积分

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警