在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → C#典型模块与项目实战大全源代码没密码

C#典型模块与项目实战大全源代码没密码

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:58.49M
  • 下载次数:17
  • 浏览次数:77
  • 发布时间:2023-06-08
  • 实例类别:C#语言基础
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2
 相关标签: 源代码 实战 代码 项目 密码

实例介绍

【实例简介】C#典型模块与项目实战大全源代码没密码 大家快点下载吧

【实例截图】

from clipboard

【核心代码】
文件清单
└── C# 项目实战大全(典型模块)项目1-18
    ├── Chp1
    │   ├── ClassDemo
    │   │   ├── ClassDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── ClassDemo.exe
    │   │   │   │       ├── ClassDemo.pdb
    │   │   │   │       ├── ClassDemo.vshost.exe
    │   │   │   │       └── ClassDemo.vshost.exe.manifest
    │   │   │   ├── ClassDemo.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── ClassDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── ClassDemo.exe
    │   │   │   │           ├── ClassDemo.pdb
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── ClassDemo.sln
    │   │   └── ClassDemo.suo
    │   ├── Delegate
    │   │   ├── Delegate
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── Delegate.vshost.exe
    │   │   │   │       └── Delegate.vshost.exe.manifest
    │   │   │   ├── Delegate.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── Delegate.sln
    │   │   └── Delegate.suo
    │   ├── DelegateGenericVar
    │   │   ├── Delegate
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── Delegate.vshost.exe
    │   │   │   │       └── Delegate.vshost.exe.manifest
    │   │   │   ├── ClassDiagram1.cd
    │   │   │   ├── Delegate.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── Delegate.sln
    │   │   └── Delegate.suo
    │   ├── DynamicBindingDemo
    │   │   ├── DynamicBindingDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── DynamicBindingDemo.exe
    │   │   │   │       ├── DynamicBindingDemo.pdb
    │   │   │   │       ├── DynamicBindingDemo.vshost.exe
    │   │   │   │       └── DynamicBindingDemo.vshost.exe.manifest
    │   │   │   ├── DynamicBindingDemo.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── DynamicBindingDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── DynamicBindingDemo.exe
    │   │   │   │           ├── DynamicBindingDemo.pdb
    │   │   │   │           ├── ResolveAssemblyReference.cache
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── DynamicBindingDemo.sln
    │   │   └── DynamicBindingDemo.suo
    │   ├── ParametersAndArguments
    │   │   ├── ParametersAndArguments
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── ParametersAndArguments.exe
    │   │   │   │       ├── ParametersAndArguments.pdb
    │   │   │   │       ├── ParametersAndArguments.vshost.exe
    │   │   │   │       └── ParametersAndArguments.vshost.exe.manifest
    │   │   │   ├── ClassDiagram1.cd
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── ParametersAndArguments.csproj.FileListAbsolute.txt
    │   │   │   │           ├── ParametersAndArguments.exe
    │   │   │   │           ├── ParametersAndArguments.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── ParametersAndArguments.csproj
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── ParametersAndArguments.sln
    │   │   └── ParametersAndArguments.suo
    │   ├── TypeSafeDemo
    │   │   ├── TypeSafeDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── TypeSafeDemo.vshost.exe
    │   │   │   │       └── TypeSafeDemo.vshost.exe.manifest
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   ├── Properties
    │   │   │   │   └── AssemblyInfo.cs
    │   │   │   └── TypeSafeDemo.csproj
    │   │   ├── TypeSafeDemo.sln
    │   │   └── TypeSafeDemo.suo
    │   ├── VarInterfaceDemo
    │   │   ├── VarInterfaceDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── VarInterfaceDemo.exe
    │   │   │   │       ├── VarInterfaceDemo.pdb
    │   │   │   │       ├── VarInterfaceDemo.vshost.exe
    │   │   │   │       └── VarInterfaceDemo.vshost.exe.manifest
    │   │   │   ├── ClassDiagram1.cd
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── TempPE
    │   │   │   │           ├── VarInterfaceDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── VarInterfaceDemo.exe
    │   │   │   │           └── VarInterfaceDemo.pdb
    │   │   │   ├── Program.cs
    │   │   │   ├── Properties
    │   │   │   │   └── AssemblyInfo.cs
    │   │   │   ├── TestClass.cs
    │   │   │   └── VarInterfaceDemo.csproj
    │   │   ├── VarInterfaceDemo.sln
    │   │   └── VarInterfaceDemo.suo
    │   └── VarInterfaceDemo2
    │       ├── VarInterfaceDemo2
    │       │   ├── bin
    │       │   │   └── Debug
    │       │   │       ├── VarInterfaceDemo2.vshost.exe
    │       │   │       └── VarInterfaceDemo2.vshost.exe.manifest
    │       │   ├── obj
    │       │   │   └── x86
    │       │   │       └── Debug
    │       │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │           └── TempPE
    │       │   ├── Program.cs
    │       │   ├── Properties
    │       │   │   └── AssemblyInfo.cs
    │       │   └── VarInterfaceDemo2.csproj
    │       ├── VarInterfaceDemo2.sln
    │       └── VarInterfaceDemo2.suo
    ├── Chp10
    │   └── silverdraw
    │       ├── Client
    │       │   ├── App.xaml
    │       │   ├── App.xaml.cs
    │       │   ├── Bin
    │       │   │   ├── Debug
    │       │   │   │   ├── AppManifest.xaml
    │       │   │   │   ├── de
    │       │   │   │   │   ├── System.Json.resources.dll
    │       │   │   │   │   ├── System.Runtime.Serialization.Json.resources.dll
    │       │   │   │   │   ├── System.ServiceModel.PollingDuplex.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── es
    │       │   │   │   │   ├── System.Json.resources.dll
    │       │   │   │   │   ├── System.Runtime.Serialization.Json.resources.dll
    │       │   │   │   │   ├── System.ServiceModel.PollingDuplex.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── fr
    │       │   │   │   │   ├── System.Json.resources.dll
    │       │   │   │   │   ├── System.Runtime.Serialization.Json.resources.dll
    │       │   │   │   │   ├── System.ServiceModel.PollingDuplex.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── it
    │       │   │   │   │   ├── System.Json.resources.dll
    │       │   │   │   │   ├── System.Runtime.Serialization.Json.resources.dll
    │       │   │   │   │   ├── System.ServiceModel.PollingDuplex.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── ja
    │       │   │   │   │   ├── System.Json.resources.dll
    │       │   │   │   │   ├── System.Runtime.Serialization.Json.resources.dll
    │       │   │   │   │   ├── System.ServiceModel.PollingDuplex.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── ko
    │       │   │   │   │   ├── System.Json.resources.dll
    │       │   │   │   │   ├── System.Runtime.Serialization.Json.resources.dll
    │       │   │   │   │   ├── System.ServiceModel.PollingDuplex.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── Silverdraw.Client.dll
    │       │   │   │   ├── Silverdraw.Client.pdb
    │       │   │   │   ├── SilverPaintGadget.dll
    │       │   │   │   ├── SilverPaintGadget.pdb
    │       │   │   │   ├── SilverPaintGadget.xap
    │       │   │   │   ├── System.Json.dll
    │       │   │   │   ├── System.Json.xml
    │       │   │   │   ├── System.Runtime.Serialization.Json.dll
    │       │   │   │   ├── System.Runtime.Serialization.Json.xml
    │       │   │   │   ├── System.ServiceModel.PollingDuplex.dll
    │       │   │   │   ├── System.ServiceModel.PollingDuplex.xml
    │       │   │   │   ├── System.Windows.Controls.dll
    │       │   │   │   ├── System.Windows.Controls.xml
    │       │   │   │   ├── TestPage.html
    │       │   │   │   ├── zh-Hans
    │       │   │   │   │   ├── System.Json.resources.dll
    │       │   │   │   │   ├── System.Runtime.Serialization.Json.resources.dll
    │       │   │   │   │   ├── System.ServiceModel.PollingDuplex.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   └── zh-Hant
    │       │   │   │       ├── System.Json.resources.dll
    │       │   │   │       ├── System.Runtime.Serialization.Json.resources.dll
    │       │   │   │       ├── System.ServiceModel.PollingDuplex.resources.dll
    │       │   │   │       └── System.Windows.Controls.resources.dll
    │       │   │   └── Release
    │       │   ├── ClassDiagram1.cd
    │       │   ├── ColorPicker
    │       │   │   ├── ColorPicker.xaml
    │       │   │   └── ColorPicker.xaml.cs
    │       │   ├── Helpers
    │       │   │   ├── CanvasHelper.cs
    │       │   │   ├── ColorHelper.cs
    │       │   │   ├── DrawingArea.cs
    │       │   │   ├── DuplexClientHelper.cs
    │       │   │   ├── JsonSerializerHelper.cs
    │       │   │   └── ToolHelper.cs
    │       │   ├── obj
    │       │   │   └── Debug
    │       │   │       ├── App.g.cs
    │       │   │       ├── ColorPicker
    │       │   │       │   └── ColorPicker.g.cs
    │       │   │       ├── DesignTimeResolveAssemblyReferences.cache
    │       │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │       ├── Page.g.cs
    │       │   │       ├── Silverdraw.Client.csproj.FileListAbsolute.txt
    │       │   │       ├── Silverdraw.Client.dll
    │       │   │       ├── Silverdraw.Client.g.resources
    │       │   │       ├── Silverdraw.Client.pdb
    │       │   │       ├── SilverPaintGadget.csproj.FileListAbsolute.txt
    │       │   │       ├── SilverPaintGadget.dll
    │       │   │       ├── SilverPaintGadget.g.resources
    │       │   │       ├── SilverPaintGadget.pdb
    │       │   │       ├── TempPE
    │       │   │       │   └── Service References.Proxy.Reference.cs.dll
    │       │   │       └── XapCacheFile.xml
    │       │   ├── Page.xaml
    │       │   ├── Page.xaml.cs
    │       │   ├── Properties
    │       │   │   ├── AppManifest.xml
    │       │   │   └── AssemblyInfo.cs
    │       │   ├── Resources
    │       │   │   ├── brush.jpg
    │       │   │   ├── circle.PNG
    │       │   │   ├── pencil.jpg
    │       │   │   ├── pen.jpg
    │       │   │   ├── rect.PNG
    │       │   │   └── sticky.jpg
    │       │   ├── ScreenObject.cs
    │       │   ├── Service References
    │       │   │   └── Proxy
    │       │   │       ├── configuration91.svcinfo
    │       │   │       ├── configuration.svcinfo
    │       │   │       ├── DuplexDrawService1.disco
    │       │   │       ├── DuplexDrawService1.wsdl
    │       │   │       ├── DuplexDrawService31.xsd
    │       │   │       ├── DuplexDrawService32.xsd
    │       │   │       ├── DuplexDrawService3.xsd
    │       │   │       ├── Reference.cs
    │       │   │       └── Reference.svcmap
    │       │   ├── ServiceReferences.ClientConfig
    │       │   ├── Silverdraw.Client.csproj
    │       │   └── Silverdraw.Client.csproj.user
    │       ├── Server
    │       │   ├── App_Data
    │       │   ├── bin
    │       │   │   ├── Silverdraw.Server.dll
    │       │   │   ├── Silverdraw.Server.pdb
    │       │   │   ├── System.Data.DataSetExtensions.dll
    │       │   │   ├── System.ServiceModel.PollingDuplex.dll
    │       │   │   └── System.Web.Extensions.dll
    │       │   ├── ClientAccessPolicy.xml
    │       │   ├── ClientBin
    │       │   │   └── SilverPaintGadget.xap
    │       │   ├── default.htm
    │       │   ├── DrawData.cs
    │       │   ├── DuplexDrawService.svc
    │       │   ├── DuplexDrawService.svc.cs
    │       │   ├── IDuplexDrawCallback.cs
    │       │   ├── IDuplexDrawService.cs
    │       │   ├── obj
    │       │   │   └── Debug
    │       │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │       ├── Package
    │       │   │       ├── Silverdraw.Server.csproj.FileListAbsolute.txt
    │       │   │       ├── Silverdraw.Server.dll
    │       │   │       ├── Silverdraw.Server.pdb
    │       │   │       ├── TempPE
    │       │   │       └── Web.config
    │       │   ├── Properties
    │       │   │   └── AssemblyInfo.cs
    │       │   ├── Service References
    │       │   ├── Silverdraw.Publish.xml
    │       │   ├── Silverdraw.Server.csproj
    │       │   ├── Silverdraw.Server.csproj.user
    │       │   ├── Silverdraw.Server.Publish.xml
    │       │   ├── Silverlight.js
    │       │   ├── Web.config
    │       │   ├── Web.Debug.config
    │       │   └── Web.Release.config
    │       ├── Silverdraw.sln
    │       └── Silverdraw.suo
    ├── Chp11
    │   └── WpfSokoban
    │       ├── Graphics
    │       │   ├── BackgroundControl.design
    │       │   ├── Banner.design
    │       │   └── Cell.design
    │       ├── Levels
    │       │   ├── Level000.skbn
    │       │   ├── Level000.skbn.test
    │       │   ├── Level001.skbn
    │       │   ├── Level002.skbn
    │       │   ├── Level003.skbn
    │       │   ├── Level004.skbn
    │       │   ├── Level005.skbn
    │       │   ├── Level006.skbn
    │       │   ├── Level007.skbn
    │       │   ├── Level008.skbn
    │       │   ├── Level009.skbn
    │       │   ├── Level010.skbn
    │       │   ├── Level011.skbn
    │       │   ├── Level012.skbn
    │       │   ├── Level013.skbn
    │       │   ├── Level014.skbn
    │       │   ├── Level015.skbn
    │       │   ├── Level016.skbn
    │       │   ├── Level017.skbn
    │       │   ├── Level018.skbn
    │       │   ├── Level019.skbn
    │       │   ├── Level020.skbn
    │       │   ├── Level021.skbn
    │       │   ├── Level022.skbn
    │       │   ├── Level023.skbn
    │       │   ├── Level024.skbn
    │       │   ├── Level025.skbn
    │       │   ├── Level026.skbn
    │       │   ├── Level027.skbn
    │       │   ├── Level028.skbn
    │       │   ├── Level029.skbn
    │       │   ├── Level030.skbn
    │       │   ├── Level031.skbn
    │       │   ├── Level032.skbn
    │       │   ├── Level033.skbn
    │       │   ├── Level034.skbn
    │       │   ├── Level035.skbn
    │       │   ├── Level036.skbn
    │       │   ├── Level037.skbn
    │       │   ├── Level038.skbn
    │       │   ├── Level039.skbn
    │       │   ├── Level040.skbn
    │       │   ├── Level041.skbn
    │       │   ├── Level042.skbn
    │       │   ├── Level043.skbn
    │       │   ├── Level044.skbn
    │       │   ├── Level045.skbn
    │       │   ├── Level046.skbn
    │       │   ├── Level047.skbn
    │       │   ├── Level048.skbn
    │       │   ├── Level049.skbn
    │       │   └── Level050.skbn
    │       └── Source
    │           ├── Orpius.Sokoban
    │           │   ├── bin
    │           │   │   ├── Debug
    │           │   │   │   ├── Orpius.Sokoban.dll
    │           │   │   │   └── Orpius.Sokoban.pdb
    │           │   │   └── Release
    │           │   ├── CellContents
    │           │   │   ├── Actor
    │           │   │   │   ├── Actor.cs
    │           │   │   │   ├── Actor.Jump.cs
    │           │   │   │   ├── Actor.Push.cs
    │           │   │   │   └── Actor.Step.cs
    │           │   │   └── Treasure.cs
    │           │   ├── CellContents.cs
    │           │   ├── Cell.cs
    │           │   ├── Cells
    │           │   │   ├── FloorCell.cs
    │           │   │   ├── GoalCell.cs
    │           │   │   ├── SpaceCell.cs
    │           │   │   └── WallCell.cs
    │           │   ├── ClassDiagram1.cd
    │           │   ├── CommandBase.cs
    │           │   ├── CommandManager.cs
    │           │   ├── Commands
    │           │   │   ├── JumpCommand.cs
    │           │   │   ├── MoveCommand.cs
    │           │   │   └── PushCommand.cs
    │           │   ├── DefaultSokobanService.cs
    │           │   ├── Diagrams
    │           │   │   ├── All.cd
    │           │   │   └── GameLevelCell.cd
    │           │   ├── Direction.cs
    │           │   ├── Game.cs
    │           │   ├── ISokobanService.cs
    │           │   ├── LevelCode.cs
    │           │   ├── LevelContentBase.cs
    │           │   ├── Level.cs
    │           │   ├── Location.cs
    │           │   ├── MoveBase.cs
    │           │   ├── Moves
    │           │   │   ├── Jump.cs
    │           │   │   ├── Move.cs
    │           │   │   └── Push.cs
    │           │   ├── obj
    │           │   │   └── Debug
    │           │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │           │   │       ├── Orpius.Sokoban.csproj.FileListAbsolute.txt
    │           │   │       ├── Orpius.Sokoban.dll
    │           │   │       ├── Orpius.Sokoban.pdb
    │           │   │       └── TempPE
    │           │   ├── Orpius.Sokoban.csproj
    │           │   ├── Orpius.Sokoban.csproj.user
    │           │   ├── PathFinders
    │           │   │   ├── PushPathFinder.cs
    │           │   │   └── SearchPathFinder.cs
    │           │   ├── Properties
    │           │   │   └── AssemblyInfo.cs
    │           │   └── SokobanException.cs
    │           ├── WpfSokoban
    │           │   ├── App.xaml
    │           │   ├── App.xaml.cs
    │           │   ├── Audio
    │           │   │   ├── DingDong.wav
    │           │   │   ├── DullClapping.mp3
    │           │   │   ├── Footstep.wav
    │           │   │   ├── Intro.wav
    │           │   │   ├── Movement_from_NEO_Sounds.mp3
    │           │   │   └── TreasurePush.wav
    │           │   ├── bin
    │           │   │   ├── Debug
    │           │   │   │   ├── Orpius.Sokoban.dll
    │           │   │   │   ├── Orpius.Sokoban.pdb
    │           │   │   │   ├── SN.TXT
    │           │   │   │   ├── WpfSokoban.exe
    │           │   │   │   ├── WpfSokoban.pdb
    │           │   │   │   ├── WpfSokoban.vshost.exe
    │           │   │   │   └── WpfSokoban.vshost.exe.manifest
    │           │   │   └── Release
    │           │   │       ├── WpfSokoban.exe
    │           │   │       ├── WpfSokoban.vshost.exe
    │           │   │       └── WpfSokoban.vshost.exe.manifest
    │           │   ├── Commands
    │           │   ├── Controls
    │           │   │   ├── BackgroundControl.xaml
    │           │   │   ├── BackgroundControl.xaml.cs
    │           │   │   ├── Banner.xaml
    │           │   │   ├── Banner.xaml.cs
    │           │   │   ├── FeedbackControl.xaml
    │           │   │   └── FeedbackControl.xaml.cs
    │           │   ├── Fonts
    │           │   │   └── ariblk.ttf
    │           │   ├── Images
    │           │   │   ├── AppIcon.ico
    │           │   │   └── AppIcon.png
    │           │   ├── MainWindow.xaml
    │           │   ├── MainWindow.xaml.cs
    │           │   ├── obj
    │           │   │   └── Debug
    │           │   │       ├── App.baml
    │           │   │       ├── App.g.cs
    │           │   │       ├── Controls
    │           │   │       │   ├── BackgroundControl.baml
    │           │   │       │   ├── BackgroundControl.g.cs
    │           │   │       │   ├── Banner.baml
    │           │   │       │   ├── Banner.g.cs
    │           │   │       │   ├── FeedbackControl.baml
    │           │   │       │   └── FeedbackControl.g.cs
    │           │   │       ├── DesignTimeResolveAssemblyReferences.cache
    │           │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │           │   │       ├── Fonts
    │           │   │       │   └── ariblk0.subset.ttf
    │           │   │       ├── GeneratedInternalTypeHelper.g.cs
    │           │   │       ├── GenerateResource-ResGen.read.1.tlog
    │           │   │       ├── GenerateResource-ResGen.write.1.tlog
    │           │   │       ├── MainWindow.baml
    │           │   │       ├── MainWindow.g.cs
    │           │   │       ├── Orpius.Sokoban.Properties.Resources.resources
    │           │   │       ├── ResolveAssemblyReference.cache
    │           │   │       ├── ResourceDictionaries
    │           │   │       │   ├── Banner_old.baml
    │           │   │       │   ├── Cell.baml
    │           │   │       │   └── Cell_old.baml
    │           │   │       ├── TempPE
    │           │   │       │   └── Properties.Resources.Designer.cs.dll
    │           │   │       ├── WpfSokoban_Content.g.cs
    │           │   │       ├── WpfSokoban.csproj.FileListAbsolute.txt
    │           │   │       ├── WpfSokoban.exe
    │           │   │       ├── WpfSokoban.g.resources
    │           │   │       ├── WpfSokoban_MarkupCompile.cache
    │           │   │       ├── WpfSokoban_MarkupCompile.lref
    │           │   │       └── WpfSokoban.pdb
    │           │   ├── Properties
    │           │   │   ├── AssemblyInfo.cs
    │           │   │   ├── Resources.Designer.cs
    │           │   │   ├── Resources.resx
    │           │   │   ├── Settings.Designer.cs
    │           │   │   └── Settings.settings
    │           │   ├── ResourceDictionaries
    │           │   │   ├── Banner_old.xaml
    │           │   │   ├── Cell_old.xaml
    │           │   │   └── Cell.xaml
    │           │   ├── WpfSokoban.csproj
    │           │   └── WpfSokoban.csproj.user
    │           ├── WpfSokoban.sln
    │           └── WpfSokoban.suo
    ├── Chp12
    │   └── SynchroConsole
    │       ├── AppSettingsLib
    │       │   ├── AppSettingsBase.cs
    │       │   ├── AppSettingsLib.csproj
    │       │   ├── AppSettingsLib.csproj.user
    │       │   ├── obj
    │       │   │   └── Debug
    │       │   │       ├── AppSettingsLib.csproj.FileListAbsolute.txt
    │       │   │       ├── AppSettingsLib.dll
    │       │   │       ├── AppSettingsLib.pdb
    │       │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │       └── TempPE
    │       │   └── Properties
    │       │       └── AssemblyInfo.cs
    │       ├── bin
    │       │   ├── Debug
    │       │   │   ├── AppSettingsLib.dll
    │       │   │   ├── AppSettingsLib.pdb
    │       │   │   ├── InstallUtil.InstallLog
    │       │   │   ├── SharedAppObjects.dll
    │       │   │   ├── SharedAppObjects.pdb
    │       │   │   ├── SynchroConsole.exe
    │       │   │   ├── SynchroConsole.pdb
    │       │   │   ├── SynchroConsole.vshost.exe
    │       │   │   ├── SynchroConsole.vshost.exe.manifest
    │       │   │   ├── SynchroLib.dll
    │       │   │   ├── SynchroLib.pdb
    │       │   │   ├── SynchroService.exe
    │       │   │   ├── synchroService.InstallLog
    │       │   │   ├── SynchroService.InstallState
    │       │   │   ├── SynchroService.pdb
    │       │   │   ├── SynchroServiceStarter.exe
    │       │   │   ├── SynchroServiceStarter.pdb
    │       │   │   ├── SynchroService.vshost.exe
    │       │   │   ├── SynchroService.vshost.exe.manifest
    │       │   │   ├── SynchroSetup.exe
    │       │   │   ├── SynchroSetup.pdb
    │       │   │   ├── SynchroSetup.vshost.exe
    │       │   │   ├── SynchroSetup.vshost.exe.manifest
    │       │   │   ├── SynchroWCF.dll
    │       │   │   └── SynchroWCF.pdb
    │       │   ├── InstallUtil.InstallLog
    │       │   └── Release
    │       ├── OtherAssemblies
    │       │   └── SmartThreadPool.dll
    │       ├── SharedAppObjects
    │       │   ├── bin
    │       │   │   ├── Debug
    │       │   │   │   ├── SharedAppObjects.dll
    │       │   │   │   └── SharedAppObjects.pdb
    │       │   │   └── Release
    │       │   ├── Events.cs
    │       │   ├── obj
    │       │   │   └── Debug
    │       │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │       ├── SharedAppObjects.dll
    │       │   │       ├── SharedAppObjects.pdb
    │       │   │       ├── SynchCommon.csproj.FileListAbsolute.txt
    │       │   │       └── TempPE
    │       │   ├── Properties
    │       │   │   └── AssemblyInfo.cs
    │       │   ├── SharedAppObjects.cs
    │       │   ├── SynchCommon.csproj
    │       │   └── SynchCommon.csproj.user
    │       ├── SynchroConsole
    │       │   ├── Enumerators.cs
    │       │   ├── ExtensionMethods.cs
    │       │   ├── FileInfoEx.cs
    │       │   ├── FileInfoList.cs
    │       │   ├── FormAddSyncItem.cs
    │       │   ├── FormAddSyncItem.Designer.cs
    │       │   ├── FormAddSyncItem.resx
    │       │   ├── FormMainConsole.cs
    │       │   ├── FormMainConsole.Designer.cs
    │       │   ├── FormMainConsole.resx
    │       │   ├── FormMain.cs
    │       │   ├── FormMain.Designer.cs
    │       │   ├── FormMain.resx
    │       │   ├── Globals.cs
    │       │   ├── HTMLPage1.htm
    │       │   ├── obj
    │       │   │   └── Debug
    │       │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │       ├── GenerateResource-ResGen.read.1.tlog
    │       │   │       ├── GenerateResource-ResGen.write.1.tlog
    │       │   │       ├── ResolveAssemblyReference.cache
    │       │   │       ├── SynchroConsole.csproj.FileListAbsolute.txt
    │       │   │       ├── SynchroConsole.exe
    │       │   │       ├── SynchroConsole.FormMainConsole.resources
    │       │   │       ├── SynchroConsole.pdb
    │       │   │       ├── SynchroConsole.Properties.Resources.resources
    │       │   │       └── TempPE
    │       │   │           └── Properties.Resources.Designer.cs.dll
    │       │   ├── Program.cs
    │       │   ├── Properties
    │       │   │   ├── AssemblyInfo.cs
    │       │   │   ├── Resources.Designer.cs
    │       │   │   ├── Resources.resx
    │       │   │   ├── Settings.Designer.cs
    │       │   │   └── Settings.settings
    │       │   ├── SynchroConsole.csproj
    │       │   └── SynchroConsole.csproj.user
    │       ├── SynchroConsole.sln
    │       ├── SynchroConsole.suo
    │       ├── SynchroLib
    │       │   ├── ClassDiagram1.cd
    │       │   ├── Enumerators.cs
    │       │   ├── ExtensionMethods.cs
    │       │   ├── FileInfoEvents.cs
    │       │   ├── FileInfoEx.cs
    │       │   ├── FileInfoList.cs
    │       │   ├── obj
    │       │   │   └── Debug
    │       │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │       ├── ResolveAssemblyReference.cache
    │       │   │       ├── SynchroLib.csproj.FileListAbsolute.txt
    │       │   │       ├── SynchroLib.dll
    │       │   │       ├── SynchroLib.pdb
    │       │   │       └── TempPE
    │       │   ├── Properties
    │       │   │   └── AssemblyInfo.cs
    │       │   ├── SynchroLib.csproj
    │       │   ├── SynchroLib.csproj.user
    │       │   ├── Synchronizer.cs
    │       │   ├── SyncItemCollection.cs
    │       │   ├── SyncItem.cs
    │       │   └── SyncSettings.cs
    │       ├── SynchroService
    │       │   ├── AppLog.cs
    │       │   ├── obj
    │       │   │   └── Debug
    │       │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │       ├── ResolveAssemblyReference.cache
    │       │   │       ├── SynchroService.csproj.FileListAbsolute.txt
    │       │   │       ├── SynchroService.exe
    │       │   │       ├── SynchroService.pdb
    │       │   │       └── TempPE
    │       │   ├── Program.cs
    │       │   ├── Properties
    │       │   │   └── AssemblyInfo.cs
    │       │   ├── SelfInstaller.cs
    │       │   ├── Service1.cs
    │       │   ├── Service1.Designer.cs
    │       │   ├── SynchroService.csproj
    │       │   ├── SynchroService.csproj.user
    │       │   ├── SyncSvcInstaller.cs
    │       │   ├── SyncSvcInstaller.Designer.cs
    │       │   └── ThreadManager.cs
    │       ├── SynchroService1
    │       │   ├── bin
    │       │   │   └── Debug
    │       │   │       ├── SynchroService1.exe
    │       │   │       └── SynchroService1.pdb
    │       │   ├── obj
    │       │   │   └── x86
    │       │   │       └── Debug
    │       │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │           ├── GenerateResource-ResGen.read.1.tlog
    │       │   │           ├── GenerateResource-ResGen.write.1.tlog
    │       │   │           ├── SynchroService1.csproj.FileListAbsolute.txt
    │       │   │           ├── SynchroService1.exe
    │       │   │           ├── SynchroService1.pdb
    │       │   │           ├── SynchroService1.ProjectInstaller.resources
    │       │   │           └── TempPE
    │       │   ├── Program.cs
    │       │   ├── ProjectInstaller.cs
    │       │   ├── ProjectInstaller.Designer.cs
    │       │   ├── ProjectInstaller.resx
    │       │   ├── Properties
    │       │   │   └── AssemblyInfo.cs
    │       │   ├── Service1.cs
    │       │   ├── Service1.Designer.cs
    │       │   └── SynchroService1.csproj
    │       ├── SynchroServiceStarter
    │       │   ├── Globals.cs
    │       │   ├── obj
    │       │   │   └── Debug
    │       │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │       ├── ResolveAssemblyReference.cache
    │       │   │       ├── SynchroServiceStarter.csproj.FileListAbsolute.txt
    │       │   │       ├── SynchroServiceStarter.exe
    │       │   │       ├── SynchroServiceStarter.pdb
    │       │   │       └── TempPE
    │       │   ├── Program.cs
    │       │   ├── Properties
    │       │   │   └── AssemblyInfo.cs
    │       │   ├── SynchroServiceStarter.csproj
    │       │   └── SynchroServiceStarter.csproj.user
    │       ├── SynchroSetup
    │       │   ├── app.manifest
    │       │   ├── Form1.cs
    │       │   ├── Form1.Designer.cs
    │       │   ├── Form1.resx
    │       │   ├── FormAddSyncItem.cs
    │       │   ├── FormAddSyncItem.Designer.cs
    │       │   ├── FormAddSyncItem.resx
    │       │   ├── FormConfigure.cs
    │       │   ├── FormConfigure.Designer.cs
    │       │   ├── FormConfigure.resx
    │       │   ├── FormExistingNames.cs
    │       │   ├── FormExistingNames.Designer.cs
    │       │   ├── FormExistingNames.resx
    │       │   ├── FormMain.cs
    │       │   ├── FormMain.Designer.cs
    │       │   ├── FormMain.resx
    │       │   ├── FormMainSetup.cs
    │       │   ├── FormMainSetup.Designer.cs
    │       │   ├── FormMainSetup.resx
    │       │   ├── Globals.cs
    │       │   ├── obj
    │       │   │   └── Debug
    │       │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │       ├── GenerateResource-ResGen.read.1.tlog
    │       │   │       ├── GenerateResource-ResGen.write.1.tlog
    │       │   │       ├── ResolveAssemblyReference.cache
    │       │   │       ├── SynchroSetup.csproj.FileListAbsolute.txt
    │       │   │       ├── SynchroSetup.exe
    │       │   │       ├── SynchroSetup.FormAddSyncItem.resources
    │       │   │       ├── SynchroSetup.FormConfigure.resources
    │       │   │       ├── SynchroSetup.FormExistingNames.resources
    │       │   │       ├── SynchroSetup.FormMainSetup.resources
    │       │   │       ├── SynchroSetup.pdb
    │       │   │       ├── SynchroSetup.Properties.Resources.resources
    │       │   │       └── TempPE
    │       │   │           └── Properties.Resources.Designer.cs.dll
    │       │   ├── Program.cs
    │       │   ├── Properties
    │       │   │   ├── AssemblyInfo.cs
    │       │   │   ├── Resources.Designer.cs
    │       │   │   ├── Resources.resx
    │       │   │   ├── Settings.Designer.cs
    │       │   │   └── Settings.settings
    │       │   ├── SynchroSetup.csproj
    │       │   ├── SynchroSetup.csproj.user
    │       │   └── SynchroSetup.ico
    │       └── SynchroWCF
    │           ├── Events.cs
    │           ├── obj
    │           │   └── Debug
    │           │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │           │       ├── SynchroWCF.csproj.FileListAbsolute.txt
    │           │       ├── SynchroWCF.dll
    │           │       ├── SynchroWCF.pdb
    │           │       └── TempPE
    │           ├── Properties
    │           │   └── AssemblyInfo.cs
    │           ├── RegisteredMsg.cs
    │           ├── SvcGlobals.cs
    │           ├── SynchroWCF.csproj
    │           ├── SynchroWCF.csproj.user
    │           └── SynchroWCFHost.cs
    ├── Chp13
    │   ├── ParallelDemo
    │   │   └── ParallelDemo1
    │   │       ├── ParallelDemo1
    │   │       │   ├── bin
    │   │       │   │   └── Debug
    │   │       │   │       ├── ParallelDemo1.exe
    │   │       │   │       ├── ParallelDemo1.pdb
    │   │       │   │       ├── ParallelDemo1.vshost.exe
    │   │       │   │       └── ParallelDemo1.vshost.exe.manifest
    │   │       │   ├── obj
    │   │       │   │   └── x86
    │   │       │   │       └── Debug
    │   │       │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │       │   │           ├── ParallelDemo1.csproj.FileListAbsolute.txt
    │   │       │   │           ├── ParallelDemo1.exe
    │   │       │   │           ├── ParallelDemo1.pdb
    │   │       │   │           └── TempPE
    │   │       │   ├── ParallelDemo1.csproj
    │   │       │   ├── Program.cs
    │   │       │   └── Properties
    │   │       │       └── AssemblyInfo.cs
    │   │       ├── ParallelDemo1.sln
    │   │       └── ParallelDemo1.suo
    │   └── SecureDelete
    │       ├── READ ME FIRST!.txt
    │       ├── Resources
    │       │   ├── back-button.png
    │       │   ├── Closed Folder.ico
    │       │   ├── Computer_ico_2.ico
    │       │   ├── Delete.ico
    │       │   ├── fixed drive.ico
    │       │   ├── locked.ICO
    │       │   ├── My Documents.ico
    │       │   ├── My Options.ico
    │       │   ├── Open Folder.ico
    │       │   └── Properties_32x32.png
    │       ├── SDelete
    │       │   ├── Eula.txt
    │       │   └── sdelete.exe
    │       ├── SecureDelete
    │       │   ├── App.config
    │       │   ├── bin
    │       │   │   ├── Debug
    │       │   │   │   ├── SecureDelete.exe
    │       │   │   │   ├── SecureDelete.exe.config
    │       │   │   │   ├── SecureDelete.pdb
    │       │   │   │   ├── SecureDelete.vshost.exe
    │       │   │   │   ├── SecureDelete.vshost.exe.config
    │       │   │   │   └── SecureDelete.vshost.exe.manifest
    │       │   │   └── Release
    │       │   ├── ClassDiagram1.cd
    │       │   ├── DeletionCompletedArguments.cs
    │       │   ├── DeletionStartArguments.cs
    │       │   ├── ExplorerFileInfo.cs
    │       │   ├── ExplorerViewColumnSorter.cs
    │       │   ├── FileCleaner.cs
    │       │   ├── FileHelper.cs
    │       │   ├── KnownExplorerFile.cs
    │       │   ├── locked.ICO
    │       │   ├── Logger.cs
    │       │   ├── obj
    │       │   │   └── x86
    │       │   │       ├── Debug
    │       │   │       │   ├── DesignTimeResolveAssemblyReferences.cache
    │       │   │       │   ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │       │   ├── GenerateResource.read.1.tlog
    │       │   │       │   ├── GenerateResource.write.1.tlog
    │       │   │       │   ├── ResolveAssemblyReference.cache
    │       │   │       │   ├── SecureDelete.csproj.FileListAbsolute.txt
    │       │   │       │   ├── SecureDelete.exe
    │       │   │       │   ├── SecureDelete.OptionsDialog.resources
    │       │   │       │   ├── SecureDelete.pdb
    │       │   │       │   ├── SecureDelete.ProgressWindow.resources
    │       │   │       │   ├── SecureDelete.Properties.Resources.resources
    │       │   │       │   ├── SecureDelete.SecureDeletion.resources
    │       │   │       │   └── TempPE
    │       │   │       │       └── Properties.Resources.Designer.cs.dll
    │       │   │       └── Release
    │       │   ├── OptionsDialog.cs
    │       │   ├── OptionsDialog.Designer.cs
    │       │   ├── OptionsDialog.resx
    │       │   ├── Program.cs
    │       │   ├── ProgressWindow.cs
    │       │   ├── ProgressWindow.Designer.cs
    │       │   ├── ProgressWindow.resx
    │       │   ├── Properties
    │       │   │   ├── AssemblyInfo.cs
    │       │   │   ├── Resources.Designer.cs
    │       │   │   ├── Resources.resx
    │       │   │   ├── Settings.Designer.cs
    │       │   │   └── Settings.settings
    │       │   ├── Resources
    │       │   │   ├── back-button.png
    │       │   │   ├── Delete.ico
    │       │   │   ├── DeleteIcon.ico
    │       │   │   ├── features_options.jpg
    │       │   │   ├── My Options.ico
    │       │   │   ├── Properties_32x32.png
    │       │   │   └── Thumbs.db
    │       │   ├── SecureDelete.csproj
    │       │   ├── SecureDeletion.cs
    │       │   ├── SecureDeletion.Designer.cs
    │       │   ├── SecureDeletionOld.cs
    │       │   ├── SecureDeletionOld.Designer.cs
    │       │   ├── SecureDeletionOld.resx
    │       │   ├── SecureDeletion.resx
    │       │   ├── SingleInstanceApplication.cs
    │       │   └── UserOptions.cs
    │       ├── SecureDelete.sln
    │       └── SecureDelete.suo
    ├── Chp14
    │   ├── BillManagerUninstallAction
    │   │   ├── BillManagerUninstallAction.csproj
    │   │   ├── BillManagerUninstallAction.csproj.user
    │   │   ├── BillManagerUninstaller.cs
    │   │   ├── BillManagerUninstaller.Designer.cs
    │   │   ├── bin
    │   │   │   ├── Debug
    │   │   │   │   ├── BillManagerUninstallAction.dll
    │   │   │   │   └── BillManagerUninstallAction.pdb
    │   │   │   └── Release
    │   │   ├── obj
    │   │   │   └── Debug
    │   │   │       ├── BillManagerUninstallAction.csproj.FileListAbsolute.txt
    │   │   │       ├── BillManagerUninstallAction.dll
    │   │   │       ├── BillManagerUninstallAction.pdb
    │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │       └── TempPE
    │   │   └── Properties
    │   │       └── AssemblyInfo.cs
    │   ├── BillPayManager
    │   │   ├── app.config
    │   │   ├── Application.ico
    │   │   ├── App.xaml
    │   │   ├── App.xaml.cs
    │   │   ├── BillPayManager.cd
    │   │   ├── BillPayManager.csproj
    │   │   ├── BillPayManager.csproj.user
    │   │   ├── bin
    │   │   │   ├── Debug
    │   │   │   │   ├── archive.xml
    │   │   │   │   ├── AvalonControlsLibrary.dll
    │   │   │   │   ├── BillPayManager.exe
    │   │   │   │   ├── BillPayManager.exe.config
    │   │   │   │   ├── BillPayManager.pdb
    │   │   │   │   ├── BillPayManager.vshost.exe
    │   │   │   │   ├── BillPayManager.vshost.exe.config
    │   │   │   │   ├── BillPayManager.vshost.exe.manifest
    │   │   │   │   ├── BillsBusinessLogicLib.dll
    │   │   │   │   ├── BillsBusinessLogicLib.pdb
    │   │   │   │   ├── BillsBusinessLogicLib.xml
    │   │   │   │   ├── BillsDalLib.dll
    │   │   │   │   ├── BillsDalLib.pdb
    │   │   │   │   ├── BillsDalLib.xml
    │   │   │   │   ├── BillsEntityLib.dll
    │   │   │   │   ├── BillsEntityLib.pdb
    │   │   │   │   ├── BillsEntityLib.xml
    │   │   │   │   ├── en-US
    │   │   │   │   │   └── BillPayManager.resources.dll
    │   │   │   │   ├── ro-RO
    │   │   │   │   │   └── BillPayManager.resources.dll
    │   │   │   │   ├── System.Windows.Controls.DataVisualization.Toolkit.dll
    │   │   │   │   ├── System.Windows.Controls.DataVisualization.Toolkit.pdb
    │   │   │   │   ├── TraceOutput.txt
    │   │   │   │   ├── WPFToolkit.dll
    │   │   │   │   ├── WPFToolkit.pdb
    │   │   │   │   ├── WPFVisifire.Charts.dll
    │   │   │   │   └── zh-CN
    │   │   │   │       └── BillPayManager.resources.dll
    │   │   │   └── Release
    │   │   │       ├── archive.xml
    │   │   │       ├── AvalonControlsLibrary.dll
    │   │   │       ├── BillPayManager.exe
    │   │   │       ├── BillPayManager.exe.config
    │   │   │       ├── BillPayManager.pdb
    │   │   │       ├── BillPayManager.vshost.exe
    │   │   │       ├── BillPayManager.vshost.exe.config
    │   │   │       ├── BillPayManager.vshost.exe.manifest
    │   │   │       ├── BillsBusinessLogicLib.dll
    │   │   │       ├── BillsBusinessLogicLib.pdb
    │   │   │       ├── BillsDalLib.dll
    │   │   │       ├── BillsDalLib.pdb
    │   │   │       ├── BillsEntityLib.dll
    │   │   │       ├── BillsEntityLib.pdb
    │   │   │       ├── en-US
    │   │   │       │   └── BillPayManager.resources.dll
    │   │   │       ├── ro-RO
    │   │   │       │   └── BillPayManager.resources.dll
    │   │   │       ├── System.Windows.Controls.DataVisualization.Toolkit.dll
    │   │   │       ├── System.Windows.Controls.DataVisualization.Toolkit.pdb
    │   │   │       ├── WPFToolkit.dll
    │   │   │       ├── WPFToolkit.pdb
    │   │   │       ├── WPFVisifire.Charts.dll
    │   │   │       └── zh-CN
    │   │   │           └── BillPayManager.resources.dll
    │   │   ├── Charting
    │   │   │   ├── BarCharting.cs
    │   │   │   ├── ICharting.cs
    │   │   │   ├── LineCharting.cs
    │   │   │   └── PieCharting.cs
    │   │   ├── ClassDiagram1.cd
    │   │   ├── DataGrid
    │   │   │   ├── ArchiveDataGridProxy.cs
    │   │   │   ├── DataRowBackgroundConverter.cs
    │   │   │   ├── DateConverter.cs
    │   │   │   ├── IDataGridProxy.cs
    │   │   │   ├── NullToUnsetConverter.cs
    │   │   │   └── RecentBillsDataGridProxy.cs
    │   │   ├── icon.ico
    │   │   ├── Images
    │   │   │   ├── about.png
    │   │   │   ├── archive.png
    │   │   │   ├── backArrow.png
    │   │   │   ├── bills.png
    │   │   │   ├── charts.png
    │   │   │   ├── fwdArrow.png
    │   │   │   ├── icon.ico
    │   │   │   └── settings.png
    │   │   ├── MainWindow.xaml
    │   │   ├── MainWindow.xaml.cs
    │   │   ├── obj
    │   │   │   ├── Debug
    │   │   │   │   ├── App.baml
    │   │   │   │   ├── App.g.cs
    │   │   │   │   ├── BillPayManager.csproj.FileListAbsolute.txt
    │   │   │   │   ├── BillPayManager.exe
    │   │   │   │   ├── BillPayManager.g.resources
    │   │   │   │   ├── BillPayManager_MarkupCompile.cache
    │   │   │   │   ├── BillPayManager_MarkupCompile.lref
    │   │   │   │   ├── BillPayManager.pdb
    │   │   │   │   ├── BillPayManager.Properties.Resources.en-US.resources
    │   │   │   │   ├── BillPayManager.Properties.Resources.ro-RO.resources
    │   │   │   │   ├── BillPayManager.Properties.Resources.zh-CN.resources
    │   │   │   │   ├── DesignTimeResolveAssemblyReferences.cache
    │   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │   ├── en-US
    │   │   │   │   │   └── BillPayManager.resources.dll
    │   │   │   │   ├── GeneratedInternalTypeHelper.g.cs
    │   │   │   │   ├── GenerateResource-ResGen.read.1.tlog
    │   │   │   │   ├── GenerateResource-ResGen.write.1.tlog
    │   │   │   │   ├── MainWindow.baml
    │   │   │   │   ├── MainWindow.g.cs
    │   │   │   │   ├── ResolveAssemblyReference.cache
    │   │   │   │   ├── ro-RO
    │   │   │   │   │   └── BillPayManager.resources.dll
    │   │   │   │   ├── TempPE
    │   │   │   │   ├── Themes
    │   │   │   │   │   ├── Brushes.baml
    │   │   │   │   │   ├── ChartStyle.baml
    │   │   │   │   │   ├── DataGrid.Generic.baml
    │   │   │   │   │   ├── ItemContStyle.baml
    │   │   │   │   │   ├── NextButton.baml
    │   │   │   │   │   ├── PrevButton.baml
    │   │   │   │   │   └── RangeSliderTemplate.baml
    │   │   │   │   └── zh-CN
    │   │   │   │       └── BillPayManager.resources.dll
    │   │   │   └── Release
    │   │   │       ├── App.baml
    │   │   │       ├── App.g.cs
    │   │   │       ├── BillPayManager.csproj.FileListAbsolute.txt
    │   │   │       ├── BillPayManager.exe
    │   │   │       ├── BillPayManager.g.resources
    │   │   │       ├── BillPayManager_MarkupCompile.cache
    │   │   │       ├── BillPayManager_MarkupCompile.lref
    │   │   │       ├── BillPayManager.pdb
    │   │   │       ├── BillPayManager.Properties.Resources.en-US.resources
    │   │   │       ├── BillPayManager.Properties.Resources.ro-RO.resources
    │   │   │       ├── BillPayManager.Properties.Resources.zh-CN.resources
    │   │   │       ├── DesignTimeResolveAssemblyReferences.cache
    │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │       ├── en-US
    │   │   │       │   └── BillPayManager.resources.dll
    │   │   │       ├── GeneratedInternalTypeHelper.g.cs
    │   │   │       ├── GenerateResource-ResGen.read.1.tlog
    │   │   │       ├── GenerateResource-ResGen.write.1.tlog
    │   │   │       ├── MainWindow.baml
    │   │   │       ├── MainWindow.g.cs
    │   │   │       ├── ResolveAssemblyReference.cache
    │   │   │       ├── ro-RO
    │   │   │       │   └── BillPayManager.resources.dll
    │   │   │       ├── TempPE
    │   │   │       ├── Themes
    │   │   │       │   ├── Brushes.baml
    │   │   │       │   ├── ChartStyle.baml
    │   │   │       │   ├── DataGrid.Generic.baml
    │   │   │       │   ├── ItemContStyle.baml
    │   │   │       │   ├── NextButton.baml
    │   │   │       │   ├── PrevButton.baml
    │   │   │       │   └── RangeSliderTemplate.baml
    │   │   │       └── zh-CN
    │   │   │           └── BillPayManager.resources.dll
    │   │   ├── Properties
    │   │   │   ├── AssemblyInfo.cs
    │   │   │   ├── Resources.en-US.resx
    │   │   │   ├── Resources.ro-RO.resx
    │   │   │   └── Resources.zh-CN.resx
    │   │   ├── Themes
    │   │   │   ├── Brushes.xaml
    │   │   │   ├── ChartStyle.xaml
    │   │   │   ├── DataGrid.Generic.xaml
    │   │   │   ├── ItemContStyle.xaml
    │   │   │   ├── NextButton.xaml
    │   │   │   ├── PrevButton.xaml
    │   │   │   ├── RangeSliderTemplate.xaml
    │   │   │   └── TabItemStyle.xaml
    │   │   └── WindowManager.cs
    │   ├── BillPayManager.sln
    │   ├── BillPayManager.suo
    │   ├── BillsBusinessLogicLib
    │   │   ├── BillManagerException.cs
    │   │   ├── BillsBusinessLogicLib.csproj
    │   │   ├── BillsBusinessLogicLib.csproj.user
    │   │   ├── BillsManager.cs
    │   │   ├── bin
    │   │   │   ├── Debug
    │   │   │   │   ├── BillsBusinessLogicLib.dll
    │   │   │   │   ├── BillsBusinessLogicLib.pdb
    │   │   │   │   ├── BillsBusinessLogicLib.XML
    │   │   │   │   ├── BillsDalLib.dll
    │   │   │   │   ├── BillsDalLib.pdb
    │   │   │   │   ├── BillsDalLib.xml
    │   │   │   │   ├── BillsEntityLib.dll
    │   │   │   │   ├── BillsEntityLib.pdb
    │   │   │   │   └── BillsEntityLib.xml
    │   │   │   └── Release
    │   │   │       ├── BillsBusinessLogicLib.dll
    │   │   │       ├── BillsBusinessLogicLib.pdb
    │   │   │       ├── BillsDalLib.dll
    │   │   │       ├── BillsDalLib.pdb
    │   │   │       ├── BillsEntityLib.dll
    │   │   │       └── BillsEntityLib.pdb
    │   │   ├── BLLBills.cd
    │   │   ├── ciumac.sergiu.pfx
    │   │   ├── IBillsManager.cs
    │   │   ├── obj
    │   │   │   ├── Debug
    │   │   │   │   ├── BillsBusinessLogicLib.csproj.FileListAbsolute.txt
    │   │   │   │   ├── BillsBusinessLogicLib.dll
    │   │   │   │   ├── BillsBusinessLogicLib.pdb
    │   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │   ├── ResolveAssemblyReference.cache
    │   │   │   │   └── TempPE
    │   │   │   └── Release
    │   │   │       ├── BillsBusinessLogicLib.csproj.FileListAbsolute.txt
    │   │   │       ├── BillsBusinessLogicLib.dll
    │   │   │       ├── BillsBusinessLogicLib.pdb
    │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │       ├── ResolveAssemblyReference.cache
    │   │   │       └── TempPE
    │   │   └── Properties
    │   │       └── AssemblyInfo.cs
    │   ├── BillsDalLib
    │   │   ├── BillsDalClassDiagram.cd
    │   │   ├── BillsDalLib.csproj
    │   │   ├── BillsDalLib.csproj.user
    │   │   ├── bin
    │   │   │   ├── Debug
    │   │   │   │   ├── BillsDalLib.dll
    │   │   │   │   ├── BillsDalLib.pdb
    │   │   │   │   ├── BillsDalLib.XML
    │   │   │   │   ├── BillsEntityLib.dll
    │   │   │   │   ├── BillsEntityLib.pdb
    │   │   │   │   └── BillsEntityLib.xml
    │   │   │   └── Release
    │   │   │       ├── BillsDalLib.dll
    │   │   │       ├── BillsDalLib.pdb
    │   │   │       ├── BillsEntityLib.dll
    │   │   │       └── BillsEntityLib.pdb
    │   │   ├── ciumac.sergiu.pfx
    │   │   ├── DalBillManagerException.cs
    │   │   ├── DALSchema
    │   │   │   ├── billpayschema.cs
    │   │   │   └── billpayschema.xsd
    │   │   ├── IDalBillsManager.cs
    │   │   ├── obj
    │   │   │   ├── Debug
    │   │   │   │   ├── BillsDalLib.csproj.FileListAbsolute.txt
    │   │   │   │   ├── BillsDalLib.dll
    │   │   │   │   ├── BillsDalLib.pdb
    │   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │   ├── ResolveAssemblyReference.cache
    │   │   │   │   └── TempPE
    │   │   │   └── Release
    │   │   │       ├── BillsDalLib.csproj.FileListAbsolute.txt
    │   │   │       ├── BillsDalLib.dll
    │   │   │       ├── BillsDalLib.pdb
    │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │       ├── ResolveAssemblyReference.cache
    │   │   │       └── TempPE
    │   │   ├── Properties
    │   │   │   └── AssemblyInfo.cs
    │   │   └── XmlDalBillsManager.cs
    │   ├── BillsEntityLib
    │   │   ├── app.config
    │   │   ├── Bill.cs
    │   │   ├── BillEntityClassDiagram.cd
    │   │   ├── BillHelper.cs
    │   │   ├── BillPropertyChangeEventArgs.cs
    │   │   ├── BillSchema.cs
    │   │   ├── BillSchema.xsd
    │   │   ├── Bills.cs
    │   │   ├── BillsEntityLib.csproj
    │   │   ├── BillsEntityLib.csproj.user
    │   │   ├── BillStatus.cs
    │   │   ├── bin
    │   │   │   ├── Debug
    │   │   │   │   ├── BillsEntityLib.dll
    │   │   │   │   ├── BillsEntityLib.dll.config
    │   │   │   │   ├── BillsEntityLib.pdb
    │   │   │   │   └── BillsEntityLib.XML
    │   │   │   └── Release
    │   │   │       ├── BillsEntityLib.dll
    │   │   │       ├── BillsEntityLib.dll.config
    │   │   │       └── BillsEntityLib.pdb
    │   │   ├── ciumac.sergiu.pfx
    │   │   ├── obj
    │   │   │   ├── Debug
    │   │   │   │   ├── BillsEntityLib.csproj.FileListAbsolute.txt
    │   │   │   │   ├── BillsEntityLib.dll
    │   │   │   │   ├── BillsEntityLib.pdb
    │   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │   └── TempPE
    │   │   │   └── Release
    │   │   │       ├── BillsEntityLib.csproj.FileListAbsolute.txt
    │   │   │       ├── BillsEntityLib.dll
    │   │   │       ├── BillsEntityLib.pdb
    │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │       └── TempPE
    │   │   └── Properties
    │   │       └── AssemblyInfo.cs
    │   ├── SetupBillPayManager
    │   │   ├── Debug
    │   │   ├── Release
    │   │   └── SetupBillPayManager.vdproj
    │   ├── TestBillPayManager
    │   │   ├── App.config
    │   │   ├── Properties
    │   │   │   └── AssemblyInfo.cs
    │   │   ├── TestBillPayManager.csproj
    │   │   ├── TestBillPayManager.csproj.user
    │   │   ├── TestDal.cs
    │   │   ├── TestEntity.cs
    │   │   └── TestLogic.cs
    │   └── TestBillPayManagerManual
    │       ├── AddBillManualTest.mht
    │       ├── DeleteBill.mht
    │       ├── Properties
    │       │   └── AssemblyInfo.cs
    │       └── TestBillPayManagerManual.csproj
    ├── Chp15
    │   └── ImageViewer
    │       ├── Artwork
    │       │   ├── Images.design
    │       │   ├── Miscellaneous.design
    │       │   └── Navigation.design
    │       ├── Intuipic
    │       │   ├── app.config
    │       │   ├── App.xaml
    │       │   ├── App.xaml.cs
    │       │   ├── bin
    │       │   │   ├── Debug
    │       │   │   │   ├── Intuipic.application
    │       │   │   │   ├── Intuipic.exe
    │       │   │   │   ├── Intuipic.exe.config
    │       │   │   │   ├── Intuipic.exe.manifest
    │       │   │   │   ├── Intuipic.pdb
    │       │   │   │   ├── Intuipic.vshost.application
    │       │   │   │   ├── Intuipic.vshost.exe
    │       │   │   │   ├── Intuipic.vshost.exe.config
    │       │   │   │   ├── Intuipic.vshost.exe.manifest
    │       │   │   │   ├── Kent.Boogaart.Converters.dll
    │       │   │   │   ├── Kent.Boogaart.Converters.pdb
    │       │   │   │   ├── Kent.Boogaart.Converters.xml
    │       │   │   │   ├── Kent.Boogaart.HelperTrinity.dll
    │       │   │   │   ├── Kent.Boogaart.HelperTrinity.pdb
    │       │   │   │   ├── Kent.Boogaart.HelperTrinity.xml
    │       │   │   │   ├── Kent.Boogaart.Windows.Controls.dll
    │       │   │   │   └── Kent.Boogaart.Windows.Controls.pdb
    │       │   │   └── Release
    │       │   ├── ClassDiagram1.cd
    │       │   ├── Commands.cs
    │       │   ├── Converters
    │       │   │   ├── BitmapFrameConverter.cs
    │       │   │   └── BitmapOrientationConverter.cs
    │       │   ├── Data
    │       │   │   ├── DesktopInformation.cs
    │       │   │   ├── DirectoryCollection.cs
    │       │   │   ├── DirectoryInformationBase.cs
    │       │   │   ├── DirectoryInformation.cs
    │       │   │   ├── DriveInformation.cs
    │       │   │   ├── InformationBase.cs
    │       │   │   ├── MyComputerInformation.cs
    │       │   │   ├── MyDocumentsInformation.cs
    │       │   │   └── Settings.cs
    │       │   ├── DeletionWindow.xaml
    │       │   ├── DeletionWindow.xaml.cs
    │       │   ├── DisplayOrder.cs
    │       │   ├── FileEnumerator.cs
    │       │   ├── Information.xaml
    │       │   ├── Information.xaml.cs
    │       │   ├── Interop
    │       │   │   ├── FileInfoAttributes.cs
    │       │   │   ├── FileInfoFlags.cs
    │       │   │   └── IconHelper.cs
    │       │   ├── Intuipic.csproj
    │       │   ├── Intuipic.csproj.user
    │       │   ├── Intuipic.ico
    │       │   ├── Intuipic_TemporaryKey.pfx
    │       │   ├── MainWindow.xaml
    │       │   ├── MainWindow.xaml.cs
    │       │   ├── Navigation
    │       │   │   ├── FolderSelectionToggleButton.cs
    │       │   │   ├── Images.xaml
    │       │   │   ├── InformationBaseCheckBox.cs
    │       │   │   ├── Panel.xaml
    │       │   │   ├── Panel.xaml.cs
    │       │   │   ├── ToolTip.xaml
    │       │   │   └── ToolTip.xaml.cs
    │       │   ├── obj
    │       │   │   └── Debug
    │       │   │       ├── App.baml
    │       │   │       ├── App.g.cs
    │       │   │       ├── DeletionWindow.baml
    │       │   │       ├── DeletionWindow.g.cs
    │       │   │       ├── DesignTimeResolveAssemblyReferences.cache
    │       │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │       ├── GeneratedInternalTypeHelper.g.cs
    │       │   │       ├── GenerateResource-ResGen.read.1.tlog
    │       │   │       ├── GenerateResource-ResGen.write.1.tlog
    │       │   │       ├── Information.baml
    │       │   │       ├── Information.g.cs
    │       │   │       ├── Intuipic.application
    │       │   │       ├── Intuipic.csproj.FileListAbsolute.txt
    │       │   │       ├── Intuipic.exe
    │       │   │       ├── Intuipic.exe.manifest
    │       │   │       ├── Intuipic.g.resources
    │       │   │       ├── Intuipic_MarkupCompile.cache
    │       │   │       ├── Intuipic_MarkupCompile.lref
    │       │   │       ├── Intuipic.pdb
    │       │   │       ├── Intuipic.Properties.Resources.resources
    │       │   │       ├── MainWindow.baml
    │       │   │       ├── MainWindow.g.cs
    │       │   │       ├── Navigation
    │       │   │       │   ├── Images.baml
    │       │   │       │   ├── Panel.baml
    │       │   │       │   ├── Panel.g.cs
    │       │   │       │   ├── ToolTip.baml
    │       │   │       │   └── ToolTip.g.cs
    │       │   │       ├── Skin
    │       │   │       │   ├── Button.baml
    │       │   │       │   ├── CheckBox.baml
    │       │   │       │   ├── GridSplitter.baml
    │       │   │       │   ├── Hyperlink.baml
    │       │   │       │   ├── Image.baml
    │       │   │       │   ├── Label.baml
    │       │   │       │   ├── ListBox.baml
    │       │   │       │   ├── Panel.baml
    │       │   │       │   ├── Rectangle.baml
    │       │   │       │   ├── Shared.baml
    │       │   │       │   ├── TextBlock.baml
    │       │   │       │   ├── TreeView.baml
    │       │   │       │   └── Window.baml
    │       │   │       └── TempPE
    │       │   │           └── Properties.Resources.Designer.cs.dll
    │       │   ├── Properties
    │       │   │   ├── AssemblyInfo.cs
    │       │   │   ├── Resources.Designer.cs
    │       │   │   └── Resources.resx
    │       │   ├── ReleaseNotes.txt
    │       │   ├── Skin
    │       │   │   ├── Button.xaml
    │       │   │   ├── CheckBox.xaml
    │       │   │   ├── GridSplitter.xaml
    │       │   │   ├── Hyperlink.xaml
    │       │   │   ├── Image.xaml
    │       │   │   ├── Label.xaml
    │       │   │   ├── ListBox.xaml
    │       │   │   ├── Panel.xaml
    │       │   │   ├── Rectangle.xaml
    │       │   │   ├── Shared.xaml
    │       │   │   ├── TextBlock.xaml
    │       │   │   ├── TreeView.xaml
    │       │   │   └── Window.xaml
    │       │   └── Timer.cs
    │       ├── Intuipic.sln
    │       ├── Intuipic.suo
    │       ├── Lib
    │       │   ├── Kent.Boogaart.Converters.dll
    │       │   ├── Kent.Boogaart.Converters.pdb
    │       │   ├── Kent.Boogaart.Converters.xml
    │       │   ├── Kent.Boogaart.HelperTrinity.dll
    │       │   ├── Kent.Boogaart.HelperTrinity.pdb
    │       │   ├── Kent.Boogaart.HelperTrinity.xml
    │       │   ├── Kent.Boogaart.Windows.Controls.dll
    │       │   └── Kent.Boogaart.Windows.Controls.pdb
    │       ├── Picture.design
    │       └── Thumbs.db
    ├── Chp16
    │   ├── MvcMusicStore
    │   │   ├── App_Data
    │   │   │   ├── aspnetdb_log.ldf
    │   │   │   ├── ASPNETDB.MDF
    │   │   │   ├── MvcMusicStore_log.ldf
    │   │   │   └── MvcMusicStore.mdf
    │   │   ├── bin
    │   │   │   ├── MvcMusicStore.dll
    │   │   │   └── MvcMusicStore.pdb
    │   │   ├── Content
    │   │   │   ├── Images
    │   │   │   │   ├── home-showcase.jpg
    │   │   │   │   ├── home-showcase.png
    │   │   │   │   ├── home-showcase.psd
    │   │   │   │   ├── logo.png
    │   │   │   │   ├── placeholder.gif
    │   │   │   │   └── placeholder.psd
    │   │   │   └── Site.css
    │   │   ├── Controllers
    │   │   │   ├── AccountController.cs
    │   │   │   ├── CheckoutController.cs
    │   │   │   ├── HomeController.cs
    │   │   │   ├── ShoppingCartController.cs
    │   │   │   ├── StoreController.cs
    │   │   │   └── StoreManagerController.cs
    │   │   ├── Global.asax
    │   │   ├── Global.asax.cs
    │   │   ├── Helpers
    │   │   │   └── HtmlHelpers.cs
    │   │   ├── Models
    │   │   │   ├── AccountModels.cs
    │   │   │   ├── Album.cs
    │   │   │   ├── Order.cs
    │   │   │   ├── ShoppingCart.cs
    │   │   │   ├── StoreDB.Designer.cs
    │   │   │   └── StoreDB.edmx
    │   │   ├── MvcMusicStore.csproj
    │   │   ├── MvcMusicStore.csproj.user
    │   │   ├── obj
    │   │   │   └── Debug
    │   │   │       ├── DesignTimeResolveAssemblyReferences.cache
    │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │       ├── edmxResourcesToEmbed
    │   │   │       │   └── Models
    │   │   │       │       ├── StoreDB.csdl
    │   │   │       │       ├── StoreDB.msl
    │   │   │       │       └── StoreDB.ssdl
    │   │   │       ├── MvcMusicStore.csproj.FileListAbsolute.txt
    │   │   │       ├── MvcMusicStore.dll
    │   │   │       ├── MvcMusicStore.pdb
    │   │   │       ├── ResolveAssemblyReference.cache
    │   │   │       └── TempPE
    │   │   │           └── Models.StoreDB.Designer.cs.dll
    │   │   ├── Properties
    │   │   │   └── AssemblyInfo.cs
    │   │   ├── Scripts
    │   │   │   ├── jquery-1.4.1.js
    │   │   │   ├── jquery-1.4.1.min.js
    │   │   │   ├── jquery-1.4.1-vsdoc.js
    │   │   │   ├── jquery.validate.js
    │   │   │   ├── jquery.validate.min.js
    │   │   │   ├── jquery.validate-vsdoc.js
    │   │   │   ├── MicrosoftAjax.debug.js
    │   │   │   ├── MicrosoftAjax.js
    │   │   │   ├── MicrosoftMvcAjax.debug.js
    │   │   │   ├── MicrosoftMvcAjax.js
    │   │   │   ├── MicrosoftMvcValidation.debug.js
    │   │   │   └── MicrosoftMvcValidation.js
    │   │   ├── ViewModels
    │   │   │   ├── ShoppingCartRemoveViewModel.cs
    │   │   │   ├── ShoppingCartViewModel.cs
    │   │   │   ├── StoreBrowseViewModel.cs
    │   │   │   ├── StoreIndexViewModel.cs
    │   │   │   └── StoreManagerViewModel.cs
    │   │   ├── Views
    │   │   │   ├── Account
    │   │   │   │   ├── ChangePassword.aspx
    │   │   │   │   ├── ChangePasswordSuccess.aspx
    │   │   │   │   ├── LogOn.aspx
    │   │   │   │   └── Register.aspx
    │   │   │   ├── Checkout
    │   │   │   │   ├── AddressAndPayment.aspx
    │   │   │   │   └── Complete.aspx
    │   │   │   ├── Home
    │   │   │   │   └── Index.aspx
    │   │   │   ├── Shared
    │   │   │   │   ├── EditorTemplates
    │   │   │   │   │   └── Album.ascx
    │   │   │   │   ├── Error.aspx
    │   │   │   │   └── Site.Master
    │   │   │   ├── ShoppingCart
    │   │   │   │   ├── CartSummary.ascx
    │   │   │   │   └── Index.aspx
    │   │   │   ├── Store
    │   │   │   │   ├── Browse.aspx
    │   │   │   │   ├── Details.aspx
    │   │   │   │   ├── GenreMenu.ascx
    │   │   │   │   └── Index.aspx
    │   │   │   ├── StoreManager
    │   │   │   │   ├── Create.aspx
    │   │   │   │   ├── Delete.aspx
    │   │   │   │   ├── Deleted.aspx
    │   │   │   │   ├── Edit.aspx
    │   │   │   │   └── Index.aspx
    │   │   │   └── Web.config
    │   │   ├── web.config
    │   │   ├── Web.Debug.config
    │   │   └── Web.Release.config
    │   ├── MvcMusicStore.sln
    │   └── MvcMusicStore.suo
    ├── Chp17
    │   ├── ContosoUniversity
    │   │   ├── About.aspx
    │   │   ├── About.aspx.cs
    │   │   ├── About.aspx.designer.cs
    │   │   ├── Account
    │   │   │   ├── ChangePassword.aspx
    │   │   │   ├── ChangePassword.aspx.cs
    │   │   │   ├── ChangePassword.aspx.designer.cs
    │   │   │   ├── ChangePasswordSuccess.aspx
    │   │   │   ├── ChangePasswordSuccess.aspx.cs
    │   │   │   ├── ChangePasswordSuccess.aspx.designer.cs
    │   │   │   ├── Login.aspx
    │   │   │   ├── Login.aspx.cs
    │   │   │   ├── Login.aspx.designer.cs
    │   │   │   ├── Register.aspx
    │   │   │   ├── Register.aspx.cs
    │   │   │   ├── Register.aspx.designer.cs
    │   │   │   └── Web.config
    │   │   ├── App_Data
    │   │   │   ├── School_log.ldf
    │   │   │   ├── School.mdf
    │   │   │   └── School original.mdf
    │   │   ├── bin
    │   │   │   ├── ContosoUniversity.dll
    │   │   │   └── ContosoUniversity.pdb
    │   │   ├── ContosoUniversity.csproj
    │   │   ├── ContosoUniversity.csproj.user
    │   │   ├── ContosoUniversity.suo
    │   │   ├── CoursesAdd.aspx
    │   │   ├── CoursesAdd.aspx.cs
    │   │   ├── CoursesAdd.aspx.designer.cs
    │   │   ├── Courses.aspx
    │   │   ├── Courses.aspx.cs
    │   │   ├── Courses.aspx.designer.cs
    │   │   ├── DAL
    │   │   │   ├── SchoolModel.Designer.cs
    │   │   │   ├── SchoolModel.edmx
    │   │   │   └── Student.cs
    │   │   ├── Default.aspx
    │   │   ├── Default.aspx.cs
    │   │   ├── Default.aspx.designer.cs
    │   │   ├── DepartmentsAdd.aspx
    │   │   ├── DepartmentsAdd.aspx.cs
    │   │   ├── DepartmentsAdd.aspx.designer.cs
    │   │   ├── Departments.aspx
    │   │   ├── Departments.aspx.cs
    │   │   ├── Departments.aspx.designer.cs
    │   │   ├── Global.asax
    │   │   ├── Global.asax.cs
    │   │   ├── Instructors.aspx
    │   │   ├── Instructors.aspx.cs
    │   │   ├── Instructors.aspx.designer.cs
    │   │   ├── InstructorsCourses.aspx
    │   │   ├── InstructorsCourses.aspx.cs
    │   │   ├── InstructorsCourses.aspx.designer.cs
    │   │   ├── obj
    │   │   │   └── Debug
    │   │   │       ├── ContosoUniversity.csproj.FileListAbsolute.txt
    │   │   │       ├── ContosoUniversity.dll
    │   │   │       ├── ContosoUniversity.pdb
    │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │       ├── edmxResourcesToEmbed
    │   │   │       │   └── DAL
    │   │   │       │       ├── SchoolModel.csdl
    │   │   │       │       ├── SchoolModel.msl
    │   │   │       │       └── SchoolModel.ssdl
    │   │   │       └── TempPE
    │   │   │           └── DAL.SchoolModel.Designer.cs.dll
    │   │   ├── OfficeAssignments.aspx
    │   │   ├── OfficeAssignments.aspx.cs
    │   │   ├── OfficeAssignments.aspx.designer.cs
    │   │   ├── Properties
    │   │   │   └── AssemblyInfo.cs
    │   │   ├── Scripts
    │   │   │   ├── jquery-1.4.1.js
    │   │   │   ├── jquery-1.4.1.min.js
    │   │   │   └── jquery-1.4.1-vsdoc.js
    │   │   ├── Site.Master
    │   │   ├── Site.Master.cs
    │   │   ├── Site.Master.designer.cs
    │   │   ├── StudentsAdd.aspx
    │   │   ├── StudentsAdd.aspx.cs
    │   │   ├── StudentsAdd.aspx.designer.cs
    │   │   ├── Students.aspx
    │   │   ├── Students.aspx.cs
    │   │   ├── Students.aspx.designer.cs
    │   │   ├── Styles
    │   │   │   └── Site.css
    │   │   ├── Web.config
    │   │   ├── Web.Debug.config
    │   │   └── Web.Release.config
    │   ├── ContosoUniversity.sln
    │   └── ContosoUniversity.suo
    ├── Chp18
    │   ├── TaskManagerSimple
    │   │   ├── AddCategoryForm.cs
    │   │   ├── AddCategoryForm.Designer.cs
    │   │   ├── AddCategoryForm.resx
    │   │   ├── AddResourceForm.cs
    │   │   ├── AddResourceForm.Designer.cs
    │   │   ├── AddResourceForm.resx
    │   │   ├── AddTaskForm.cs
    │   │   ├── AddTaskForm.Designer.cs
    │   │   ├── AddTaskForm.resx
    │   │   ├── app.config
    │   │   ├── bin
    │   │   │   ├── Debug
    │   │   │   │   ├── Database
    │   │   │   │   │   ├── TaskManager_log.ldf
    │   │   │   │   │   └── TaskManager.mdf
    │   │   │   │   ├── Resources
    │   │   │   │   │   ├── Blue_Category.ico
    │   │   │   │   │   ├── Green_Category.ico
    │   │   │   │   │   ├── High_Priority_Icon.ico
    │   │   │   │   │   ├── Low_Priority_Icon.ico
    │   │   │   │   │   ├── Low_Priority.png
    │   │   │   │   │   ├── Medium_Priority_Icon.ico
    │   │   │   │   │   ├── NextWeek_Flag_Icon.ico
    │   │   │   │   │   ├── NoDate_Flag_Icon.ico
    │   │   │   │   │   ├── NoDate_Flag.png
    │   │   │   │   │   ├── Orange_Category.ico
    │   │   │   │   │   ├── Purple_Category.ico
    │   │   │   │   │   ├── Red_Category.ico
    │   │   │   │   │   ├── ThisWeek_Flag_Icon.ico
    │   │   │   │   │   ├── Today_Flag_Icon.ico
    │   │   │   │   │   ├── Tomorrow_Flag_Icon.ico
    │   │   │   │   │   └── Yellow_Category.ico
    │   │   │   │   ├── TaskManager.exe
    │   │   │   │   ├── TaskManager.exe.config
    │   │   │   │   ├── TaskManager_log.ldf
    │   │   │   │   ├── TaskManager.mdf
    │   │   │   │   ├── TaskManager.pdb
    │   │   │   │   ├── TaskManager.vshost.exe
    │   │   │   │   ├── TaskManager.vshost.exe.config
    │   │   │   │   └── TaskManager.vshost.exe.manifest
    │   │   │   └── Release
    │   │   ├── CategoryForm.cs
    │   │   ├── CategoryForm.Designer.cs
    │   │   ├── CategoryForm.resx
    │   │   ├── ClassDiagram1.cd
    │   │   ├── Common
    │   │   │   ├── EditRecordEventArgs.cs
    │   │   │   ├── JumpListDisplayStyle.cs
    │   │   │   ├── OpenTaskEventArgs.cs
    │   │   │   ├── TaskCategory.cs
    │   │   │   ├── TaskDurationType.cs
    │   │   │   ├── TaskFlag.cs
    │   │   │   ├── TaskPriority.cs
    │   │   │   ├── TaskStatus.cs
    │   │   │   └── Utility.cs
    │   │   ├── Controls
    │   │   │   ├── GanttChart.cs
    │   │   │   ├── GanttChart.Designer.cs
    │   │   │   ├── GanttViewer.cs
    │   │   │   ├── GanttViewer.Designer.cs
    │   │   │   ├── GanttViewer.resx
    │   │   │   ├── TaskViewer.cs
    │   │   │   ├── TaskViewer.Designer.cs
    │   │   │   ├── TaskViewer.resx
    │   │   │   ├── TextEditor.cs
    │   │   │   ├── TextEditor.Designer.cs
    │   │   │   ├── TextEditor.resx
    │   │   │   ├── ThumbnailViewer.cs
    │   │   │   ├── ThumbnailViewer.Designer.cs
    │   │   │   └── ThumbnailViewer.resx
    │   │   ├── Database
    │   │   │   ├── SqlTaskManager.Designer.cs
    │   │   │   ├── SqlTaskManager.edmx
    │   │   │   ├── TaskManager_log.LDF
    │   │   │   └── TaskManager.mdf
    │   │   ├── obj
    │   │   │   └── Debug
    │   │   │       ├── DesignTimeResolveAssemblyReferences.cache
    │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │       ├── edmxResourcesToEmbed
    │   │   │       │   └── Database
    │   │   │       │       ├── SqlTaskManager.csdl
    │   │   │       │       ├── SqlTaskManager.msl
    │   │   │       │       └── SqlTaskManager.ssdl
    │   │   │       ├── GenerateResource.read.1.tlog
    │   │   │       ├── GenerateResource-ResGen.read.1.tlog
    │   │   │       ├── GenerateResource-ResGen.read.4.tlog
    │   │   │       ├── GenerateResource-ResGen.read.5.tlog
    │   │   │       ├── GenerateResource-ResGen.write.1.tlog
    │   │   │       ├── GenerateResource.write.1.tlog
    │   │   │       ├── TaskManager.AddCategoryForm.resources
    │   │   │       ├── TaskManager.AddResourceForm.resources
    │   │   │       ├── TaskManager.AddTaskForm.resources
    │   │   │       ├── TaskManager.CategoryForm.resources
    │   │   │       ├── TaskManager.Controls.GanttViewer.resources
    │   │   │       ├── TaskManager.Controls.TaskViewer.resources
    │   │   │       ├── TaskManager.Controls.TextEditor.resources
    │   │   │       ├── TaskManager.Controls.ThumbnailViewer.resources
    │   │   │       ├── TaskManager.exe
    │   │   │       ├── TaskManager.pdb
    │   │   │       ├── TaskManager.Properties.Resources.resources
    │   │   │       ├── TaskManager.ResourceForm.resources
    │   │   │       ├── TaskManagerSimple.csproj.FileListAbsolute.txt
    │   │   │       ├── TaskManager.TaskForm.resources
    │   │   │       ├── TaskManager.TaskGanttChartForm.resources
    │   │   │       ├── TaskManager.TaskManagerMainForm.resources
    │   │   │       └── TempPE
    │   │   │           ├── Database.SqlTaskManager.Designer.cs.dll
    │   │   │           ├── Model1.Designer.cs.dll
    │   │   │           └── Properties.Resources.Designer.cs.dll
    │   │   ├── Program.cs
    │   │   ├── Properties
    │   │   │   ├── AssemblyInfo.cs
    │   │   │   ├── DataSources
    │   │   │   │   └── TaskManager.Database.TaskManagerEntities.datasource
    │   │   │   ├── Resources.Designer.cs
    │   │   │   ├── Resources.resx
    │   │   │   ├── Settings.Designer.cs
    │   │   │   └── Settings.settings
    │   │   ├── ResourceForm.cs
    │   │   ├── ResourceForm.Designer.cs
    │   │   ├── ResourceForm.resx
    │   │   ├── Resources
    │   │   │   ├── AddCategory.png
    │   │   │   ├── Add.png
    │   │   │   ├── AddResource.png
    │   │   │   ├── AddTask.png
    │   │   │   ├── backcolor.bmp
    │   │   │   ├── Back.ico
    │   │   │   ├── Blue_Category.ico
    │   │   │   ├── BlueCat.png
    │   │   │   ├── bold.bmp
    │   │   │   ├── Category_Icon.ico
    │   │   │   ├── Category.png
    │   │   │   ├── Close.bmp
    │   │   │   ├── Close.png
    │   │   │   ├── color.bmp
    │   │   │   ├── Delete_01.png
    │   │   │   ├── Delete_Icon.ico
    │   │   │   ├── Delete.png
    │   │   │   ├── edit_Icon.ico
    │   │   │   ├── edit.png
    │   │   │   ├── Empty.png
    │   │   │   ├── Forward.ico
    │   │   │   ├── GanttChart.png
    │   │   │   ├── Green_Category.ico
    │   │   │   ├── GreenCat.png
    │   │   │   ├── High_Priority_Icon.ico
    │   │   │   ├── High_Priority.png
    │   │   │   ├── indent.bmp
    │   │   │   ├── italic.bmp
    │   │   │   ├── Low_Priority_Icon.ico
    │   │   │   ├── Low_Priority.png
    │   │   │   ├── Medium_Priority_Icon.ico
    │   │   │   ├── Medium_Priority.png
    │   │   │   ├── NextWeek_Flag_Icon.ico
    │   │   │   ├── NextWeek_Flag.png
    │   │   │   ├── NoDate_Flag_Icon.ico
    │   │   │   ├── NoDate_Flag.png
    │   │   │   ├── ol.bmp
    │   │   │   ├── Orange_Category.ico
    │   │   │   ├── OrangeCat.png
    │   │   │   ├── outdent.bmp
    │   │   │   ├── Purple_Category.ico
    │   │   │   ├── PurpleCat.png
    │   │   │   ├── Question.ico
    │   │   │   ├── Question_Icon.ico
    │   │   │   ├── Red_Category.ico
    │   │   │   ├── RedCat.png
    │   │   │   ├── Resource_Icon.ico
    │   │   │   ├── Resource.png
    │   │   │   ├── Save.bmp
    │   │   │   ├── Save.png
    │   │   │   ├── Task_Icon.ico
    │   │   │   ├── Task manager.ico
    │   │   │   ├── Task.png
    │   │   │   ├── TaskSetting.png
    │   │   │   ├── ThisWeek_Flag_Icon.ico
    │   │   │   ├── ThisWeek_Flag.png
    │   │   │   ├── Today_Flag_Icon.ico
    │   │   │   ├── Today_Flag.png
    │   │   │   ├── Tomorrow_Flag_Icon.ico
    │   │   │   ├── Tomorrow_Flag.png
    │   │   │   ├── underscore.bmp
    │   │   │   ├── uol.bmp
    │   │   │   ├── Yellow_Category.ico
    │   │   │   └── YellowCat.png
    │   │   ├── TaskForm.cs
    │   │   ├── TaskForm.Designer.cs
    │   │   ├── TaskForm.resx
    │   │   ├── TaskGanttChartForm.cs
    │   │   ├── TaskGanttChartForm.Designer.cs
    │   │   ├── TaskGanttChartForm.resx
    │   │   ├── TaskManager.csproj.user
    │   │   ├── TaskManager_log.ldf
    │   │   ├── TaskManagerMainForm.cs
    │   │   ├── TaskManagerMainForm.Designer.cs
    │   │   ├── TaskManagerMainForm.resx
    │   │   ├── TaskManager.mdf
    │   │   ├── TaskManagerSimple.csproj
    │   │   └── TaskManagerSimple.csproj.user
    │   ├── TaskManagerSimple.sln
    │   └── TaskManagerSimple.suo
    ├── Chp2
    │   ├── ArrayListDemo
    │   │   ├── ArrayListDemo
    │   │   │   ├── ArrayListDemo.csproj
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── ArrayListDemo.exe
    │   │   │   │       ├── ArrayListDemo.pdb
    │   │   │   │       ├── ArrayListDemo.vshost.exe
    │   │   │   │       └── ArrayListDemo.vshost.exe.manifest
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── ArrayListDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── ArrayListDemo.exe
    │   │   │   │           ├── ArrayListDemo.pdb
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── ArrayListDemo.sln
    │   │   └── ArrayListDemo.suo
    │   ├── classDemo
    │   │   ├── classDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── classDemo.exe
    │   │   │   │       ├── classDemo.pdb
    │   │   │   │       ├── classDemo.vshost.exe
    │   │   │   │       └── classDemo.vshost.exe.manifest
    │   │   │   ├── classDemo.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── classDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── classDemo.exe
    │   │   │   │           ├── classDemo.pdb
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── classDemo.sln
    │   │   └── classDemo.suo
    │   ├── EnumDemo
    │   │   ├── EnumDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── EnumDemo.exe
    │   │   │   │       ├── EnumDemo.pdb
    │   │   │   │       ├── EnumDemo.vshost.exe
    │   │   │   │       └── EnumDemo.vshost.exe.manifest
    │   │   │   ├── EnumDemo.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── EnumDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── EnumDemo.exe
    │   │   │   │           ├── EnumDemo.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── EnumDemo.sln
    │   │   └── EnumDemo.suo
    │   ├── GenericDictionaryDemo
    │   │   ├── GenericDictionaryDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── GenericDictionaryDemo.exe
    │   │   │   │       ├── GenericDictionaryDemo.pdb
    │   │   │   │       ├── GenericDictionaryDemo.vshost.exe
    │   │   │   │       └── GenericDictionaryDemo.vshost.exe.manifest
    │   │   │   ├── GenericDictionaryDemo.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── GenericDictionaryDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── GenericDictionaryDemo.exe
    │   │   │   │           ├── GenericDictionaryDemo.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── GenericDictionaryDemo.sln
    │   │   └── GenericDictionaryDemo.suo
    │   ├── GenericList
    │   │   ├── GenericList
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── GenericList.vshost.exe
    │   │   │   │       └── GenericList.vshost.exe.manifest
    │   │   │   ├── GenericList.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── GenericList.sln
    │   │   └── GenericList.suo
    │   ├── GenericQueueDemo
    │   │   ├── GenericQueueDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── GenericQueueDemo.exe
    │   │   │   │       ├── GenericQueueDemo.pdb
    │   │   │   │       ├── GenericQueueDemo.vshost.exe
    │   │   │   │       └── GenericQueueDemo.vshost.exe.manifest
    │   │   │   ├── GenericQueueDemo.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── GenericQueueDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── GenericQueueDemo.exe
    │   │   │   │           ├── GenericQueueDemo.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── GenericQueueDemo.sln
    │   │   └── GenericQueueDemo.suo
    │   ├── GenericSortedListDemo
    │   │   ├── GenericSortedListDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── GenericSortedListDemo.exe
    │   │   │   │       ├── GenericSortedListDemo.pdb
    │   │   │   │       ├── GenericSortedListDemo.vshost.exe
    │   │   │   │       └── GenericSortedListDemo.vshost.exe.manifest
    │   │   │   ├── GenericSortedListDemo.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── GenericSortedListDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── GenericSortedListDemo.exe
    │   │   │   │           ├── GenericSortedListDemo.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── GenericSortedListDemo.sln
    │   │   └── GenericSortedListDemo.suo
    │   ├── GenericStackDemo
    │   │   ├── GenericStackDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── GenericStackDemo.exe
    │   │   │   │       ├── GenericStackDemo.pdb
    │   │   │   │       ├── GenericStackDemo.vshost.exe
    │   │   │   │       └── GenericStackDemo.vshost.exe.manifest
    │   │   │   ├── GenericStackDemo.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── GenericStackDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── GenericStackDemo.exe
    │   │   │   │           ├── GenericStackDemo.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── GenericStackDemo.sln
    │   │   └── GenericStackDemo.suo
    │   ├── HashtableDemo
    │   │   ├── HashtableDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── HashtableDemo.exe
    │   │   │   │       ├── HashtableDemo.pdb
    │   │   │   │       ├── HashtableDemo.vshost.exe
    │   │   │   │       └── HashtableDemo.vshost.exe.manifest
    │   │   │   ├── HashtableDemo.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── HashtableDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── HashtableDemo.exe
    │   │   │   │           ├── HashtableDemo.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── HashtableDemo.sln
    │   │   └── HashtableDemo.suo
    │   ├── InheritedDemo
    │   │   ├── InheritedDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── InheritedDemo.exe
    │   │   │   │       ├── InheritedDemo.pdb
    │   │   │   │       ├── InheritedDemo.vshost.exe
    │   │   │   │       └── InheritedDemo.vshost.exe.manifest
    │   │   │   ├── InheritedDemo.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── InheritedDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── InheritedDemo.exe
    │   │   │   │           ├── InheritedDemo.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── InheritedDemo.sln
    │   │   └── InheritedDemo.suo
    │   ├── MethodDefineDemo
    │   │   ├── MethodDefineDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── MethodDefineDemo.vshost.exe
    │   │   │   │       └── MethodDefineDemo.vshost.exe.manifest
    │   │   │   ├── MethodDefineDemo.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── MethodDefineDemo.sln
    │   │   └── MethodDefineDemo.suo
    │   ├── MethodOverloadDemo
    │   │   ├── MethodOverloadDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── MethodOverloadDemo.exe
    │   │   │   │       ├── MethodOverloadDemo.pdb
    │   │   │   │       ├── MethodOverloadDemo.vshost.exe
    │   │   │   │       └── MethodOverloadDemo.vshost.exe.manifest
    │   │   │   ├── MethodOverloadDemo.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── MethodOverloadDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── MethodOverloadDemo.exe
    │   │   │   │           ├── MethodOverloadDemo.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── MethodOverloadDemo.sln
    │   │   └── MethodOverloadDemo.suo
    │   ├── MethodParamsDemo
    │   │   ├── MethodParamsDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── MethodParamsDemo.vshost.exe
    │   │   │   │       └── MethodParamsDemo.vshost.exe.manifest
    │   │   │   ├── MethodParamsDemo.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── MethodParamsDemo.sln
    │   │   └── MethodParamsDemo.suo
    │   ├── MethodWithrefoutparams
    │   │   ├── MethodWithrefoutparams
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── MethodWithrefoutparams.exe
    │   │   │   │       ├── MethodWithrefoutparams.pdb
    │   │   │   │       ├── MethodWithrefoutparams.vshost.exe
    │   │   │   │       └── MethodWithrefoutparams.vshost.exe.manifest
    │   │   │   ├── MethodWithrefoutparams.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── MethodWithrefoutparams.csproj.FileListAbsolute.txt
    │   │   │   │           ├── MethodWithrefoutparams.exe
    │   │   │   │           ├── MethodWithrefoutparams.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── MethodWithrefoutparams.sln
    │   │   └── MethodWithrefoutparams.suo
    │   ├── namespaceDemo
    │   │   ├── namespaceDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── namespaceDemo.exe
    │   │   │   │       ├── namespaceDemo.pdb
    │   │   │   │       ├── namespaceDemo.vshost.exe
    │   │   │   │       └── namespaceDemo.vshost.exe.manifest
    │   │   │   ├── namespaceDemo.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── namespaceDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── namespaceDemo.exe
    │   │   │   │           ├── namespaceDemo.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── namespaceDemo.sln
    │   │   └── namespaceDemo.suo
    │   ├── NullableDemo
    │   │   ├── NullableDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── NullableDemo.exe
    │   │   │   │       ├── NullableDemo.pdb
    │   │   │   │       ├── NullableDemo.vshost.exe
    │   │   │   │       └── NullableDemo.vshost.exe.manifest
    │   │   │   ├── NullableDemo.csproj
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── NullableDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── NullableDemo.exe
    │   │   │   │           ├── NullableDemo.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── NullableDemo.sln
    │   │   └── NullableDemo.suo
    │   ├── PolymorphismDemo
    │   │   ├── PolymorphismDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── PolymorphismDemo.exe
    │   │   │   │       ├── PolymorphismDemo.pdb
    │   │   │   │       ├── PolymorphismDemo.vshost.exe
    │   │   │   │       └── PolymorphismDemo.vshost.exe.manifest
    │   │   │   ├── ClassDiagram1.cd
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── PolymorphismDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── PolymorphismDemo.exe
    │   │   │   │           ├── PolymorphismDemo.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── PolymorphismDemo.csproj
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── PolymorphismDemo.sln
    │   │   └── PolymorphismDemo.suo
    │   ├── QueueDemo
    │   │   ├── QueueDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── QueueDemo.exe
    │   │   │   │       ├── QueueDemo.pdb
    │   │   │   │       ├── QueueDemo.vshost.exe
    │   │   │   │       └── QueueDemo.vshost.exe.manifest
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── QueueDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── QueueDemo.exe
    │   │   │   │           ├── QueueDemo.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   ├── Properties
    │   │   │   │   └── AssemblyInfo.cs
    │   │   │   └── QueueDemo.csproj
    │   │   ├── QueueDemo.sln
    │   │   └── QueueDemo.suo
    │   ├── SortedListDemo
    │   │   ├── SortedListDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── SortedListDemo.exe
    │   │   │   │       ├── SortedListDemo.pdb
    │   │   │   │       ├── SortedListDemo.vshost.exe
    │   │   │   │       └── SortedListDemo.vshost.exe.manifest
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── SortedListDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── SortedListDemo.exe
    │   │   │   │           ├── SortedListDemo.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   ├── Properties
    │   │   │   │   └── AssemblyInfo.cs
    │   │   │   └── SortedListDemo.csproj
    │   │   ├── SortedListDemo.sln
    │   │   └── SortedListDemo.suo
    │   ├── StackDemo
    │   │   ├── StackDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── StackDemo.exe
    │   │   │   │       ├── StackDemo.pdb
    │   │   │   │       ├── StackDemo.vshost.exe
    │   │   │   │       └── StackDemo.vshost.exe.manifest
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── StackDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── StackDemo.exe
    │   │   │   │           ├── StackDemo.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   ├── Properties
    │   │   │   │   └── AssemblyInfo.cs
    │   │   │   └── StackDemo.csproj
    │   │   ├── StackDemo.sln
    │   │   └── StackDemo.suo
    │   ├── StaticMethodWithOthers
    │   │   ├── StaticMethodWithOthers
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── StaticMethodWithOthers.exe
    │   │   │   │       ├── StaticMethodWithOthers.pdb
    │   │   │   │       ├── StaticMethodWithOthers.vshost.exe
    │   │   │   │       └── StaticMethodWithOthers.vshost.exe.manifest
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── StaticMethodWithOthers.csproj.FileListAbsolute.txt
    │   │   │   │           ├── StaticMethodWithOthers.exe
    │   │   │   │           ├── StaticMethodWithOthers.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   ├── Properties
    │   │   │   │   └── AssemblyInfo.cs
    │   │   │   └── StaticMethodWithOthers.csproj
    │   │   ├── StaticMethodWithOthers.sln
    │   │   └── StaticMethodWithOthers.suo
    │   ├── stringRefDemo
    │   │   ├── stringRefDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── stringRefDemo.exe
    │   │   │   │       ├── stringRefDemo.pdb
    │   │   │   │       ├── stringRefDemo.vshost.exe
    │   │   │   │       └── stringRefDemo.vshost.exe.manifest
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── stringRefDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── stringRefDemo.exe
    │   │   │   │           ├── stringRefDemo.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   ├── Properties
    │   │   │   │   └── AssemblyInfo.cs
    │   │   │   └── stringRefDemo.csproj
    │   │   ├── stringRefDemo.sln
    │   │   └── stringRefDemo.suo
    │   ├── StructDemo
    │   │   ├── StructDemo
    │   │   │   ├── bin
    │   │   │   │   └── Debug
    │   │   │   │       ├── StructDemo.exe
    │   │   │   │       ├── StructDemo.pdb
    │   │   │   │       ├── StructDemo.vshost.exe
    │   │   │   │       └── StructDemo.vshost.exe.manifest
    │   │   │   ├── obj
    │   │   │   │   └── x86
    │   │   │   │       └── Debug
    │   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │           ├── StructDemo.csproj.FileListAbsolute.txt
    │   │   │   │           ├── StructDemo.exe
    │   │   │   │           ├── StructDemo.pdb
    │   │   │   │           └── TempPE
    │   │   │   ├── Program.cs
    │   │   │   ├── Properties
    │   │   │   │   └── AssemblyInfo.cs
    │   │   │   └── StructDemo.csproj
    │   │   ├── StructDemo.sln
    │   │   └── StructDemo.suo
    │   └── varDemo
    │       ├── varDemo
    │       │   ├── bin
    │       │   │   └── Debug
    │       │   │       ├── varDemo.vshost.exe
    │       │   │       └── varDemo.vshost.exe.manifest
    │       │   ├── obj
    │       │   │   └── x86
    │       │   │       └── Debug
    │       │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │           └── TempPE
    │       │   ├── Program.cs
    │       │   ├── Properties
    │       │   │   └── AssemblyInfo.cs
    │       │   └── varDemo.csproj
    │       ├── varDemo.sln
    │       └── varDemo.suo
    ├── Chp3
    │   ├── SimpleConfigurator
    │   │   ├── App.xaml
    │   │   ├── App.xaml.cs
    │   │   ├── Bin
    │   │   │   ├── Debug
    │   │   │   │   ├── AppManifest.xaml
    │   │   │   │   ├── ar
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── bg
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── ca
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── cs
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── da
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── de
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── el
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── es
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── et
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── eu
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── fi
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── fr
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── he
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── hr
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── hu
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── id
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── it
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── ja
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── ko
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── lt
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── lv
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── Microsoft.Expression.Controls.dll
    │   │   │   │   ├── Microsoft.Expression.Controls.xml
    │   │   │   │   ├── Microsoft.Expression.Drawing.dll
    │   │   │   │   ├── Microsoft.Expression.Drawing.xml
    │   │   │   │   ├── Microsoft.Expression.Interactions.dll
    │   │   │   │   ├── Microsoft.Expression.Interactions.xml
    │   │   │   │   ├── ms
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── nl
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── no
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── pl
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── pt
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── pt-BR
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── ro
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── ru
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── SimpleConfigurator.dll
    │   │   │   │   ├── SimpleConfigurator.pdb
    │   │   │   │   ├── SimpleConfiguratorTestPage.html
    │   │   │   │   ├── SimpleConfigurator.xap
    │   │   │   │   ├── sk
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── sl
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── sr-Cyrl-CS
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── sr-Latn-CS
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── sv
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── System.Windows.Controls.dll
    │   │   │   │   ├── System.Windows.Controls.Toolkit.dll
    │   │   │   │   ├── System.Windows.Controls.Toolkit.Internals.dll
    │   │   │   │   ├── System.Windows.Controls.Toolkit.pdb
    │   │   │   │   ├── System.Windows.Controls.Toolkit.xml
    │   │   │   │   ├── System.Windows.Controls.xml
    │   │   │   │   ├── System.Windows.Interactivity.dll
    │   │   │   │   ├── System.Windows.Interactivity.xml
    │   │   │   │   ├── th
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── tr
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── uk
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── vi
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   ├── zh-Hans
    │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   └── zh-Hant
    │   │   │   │       └── System.Windows.Controls.resources.dll
    │   │   │   └── Release
    │   │   ├── ClassDiagram1.cd
    │   │   ├── ClassDiagram2.cd
    │   │   ├── Classes
    │   │   │   ├── DelegateCommand.cs
    │   │   │   └── HTMLPopupWindow.cs
    │   │   ├── Controls
    │   │   │   ├── RangeSlider.xaml
    │   │   │   └── RangeSlider.xaml.cs
    │   │   ├── Models
    │   │   │   └── Model.cs
    │   │   ├── obj
    │   │   │   └── Debug
    │   │   │       ├── App.g.cs
    │   │   │       ├── App.g.i.cs
    │   │   │       ├── Controls
    │   │   │       │   ├── RangeSlider.g.cs
    │   │   │       │   └── RangeSlider.g.i.cs
    │   │   │       ├── DesignTimeResolveAssemblyReferences.cache
    │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │       ├── ResolveAssemblyReference.cache
    │   │   │       ├── SimpleConfigurator.csproj.FileListAbsolute.txt
    │   │   │       ├── SimpleConfigurator.dll
    │   │   │       ├── SimpleConfigurator.g.resources
    │   │   │       ├── SimpleConfigurator.pdb
    │   │   │       ├── TempPE
    │   │   │       │   └── Service References.Peoplews.Reference.cs.dll
    │   │   │       ├── Views
    │   │   │       │   ├── MainPage.g.cs
    │   │   │       │   └── MainPage.g.i.cs
    │   │   │       └── XapCacheFile.xml
    │   │   ├── Properties
    │   │   │   ├── AppManifest.xml
    │   │   │   └── AssemblyInfo.cs
    │   │   ├── Service References
    │   │   │   └── Peoplews
    │   │   │       ├── configuration91.svcinfo
    │   │   │       ├── configuration.svcinfo
    │   │   │       ├── Reference.cs
    │   │   │       ├── Reference.svcmap
    │   │   │       ├── SimpleConfigurator.Peoplews.SearchPeopleResponse.datasource
    │   │   │       ├── WebService.disco
    │   │   │       └── WebService.wsdl
    │   │   ├── ServiceReferences.ClientConfig
    │   │   ├── SimpleConfigurator.csproj
    │   │   ├── SimpleConfigurator.csproj.user
    │   │   ├── ViewModels
    │   │   │   └── MainPageModel.cs
    │   │   └── Views
    │   │       ├── MainPage.xaml
    │   │       └── MainPage.xaml.cs
    │   ├── SimpleConfigurator.sln
    │   ├── SimpleConfigurator.suo
    │   └── SimpleConfigurator.Web
    │       ├── bin
    │       │   ├── SimpleConfigurator.Web.dll
    │       │   └── SimpleConfigurator.Web.pdb
    │       ├── Classes
    │       │   ├── People.cs
    │       │   ├── Person.cs
    │       │   └── Utility.cs
    │       ├── ClientBin
    │       │   └── SimpleConfigurator.xap
    │       ├── Default.aspx
    │       ├── obj
    │       │   └── Debug
    │       │       ├── DesignTimeResolveAssemblyReferences.cache
    │       │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │       ├── RdlCompile.cache
    │       │       ├── RdlCompile.compiled
    │       │       ├── ResolveAssemblyReference.cache
    │       │       ├── SimpleConfigurator.Web.csproj.FileListAbsolute.txt
    │       │       ├── SimpleConfigurator.Web.dll
    │       │       ├── SimpleConfigurator.Web.pdb
    │       │       └── TempPE
    │       ├── Properties
    │       │   └── AssemblyInfo.cs
    │       ├── Report1.rdlc
    │       ├── Report.aspx
    │       ├── Report.aspx.cs
    │       ├── Report.aspx.designer.cs
    │       ├── Silverlight.js
    │       ├── SimpleConfigurator.Web.csproj
    │       ├── SimpleConfigurator.Web.csproj.user
    │       ├── SimpleConfigurator.Web.Publish.xml
    │       ├── Web.config
    │       ├── Web.Debug.config
    │       ├── Web.Release.config
    │       ├── WebService.asmx
    │       └── WebService.asmx.cs
    ├── Chp4
    │   ├── QXR_Binaries
    │   │   ├── QuickStream.dll
    │   │   ├── QxrControls.dll
    │   │   ├── QXR.exe
    │   │   └── WeifenLuo.WinFormsUI.Docking.dll
    │   └── QXR_DemoProject
    │       ├── Graphics
    │       │   ├── Document.ico
    │       │   ├── Find.ico
    │       │   ├── Gnome-Document-Open-32.png
    │       │   ├── Gnome-Document-Print-32.png
    │       │   ├── Gnome-Document-Print-Preview-32.png
    │       │   ├── Gnome-Document-Properties-32.png
    │       │   ├── Gnome-Edit-Find-32.png
    │       │   ├── Gnome-Edit-Find-Replace-32.png
    │       │   ├── Gnome-Emblem-Unreadable-32.png
    │       │   ├── Gnome-Folder-Saved-Search-32.png
    │       │   ├── Gnome-Format-Justify-Left-32.png
    │       │   ├── Gnome-Go-Jump-32.png
    │       │   ├── Gnome-Go-Jump.ico
    │       │   ├── Gnome-System-Shutdown-32.png
    │       │   ├── Gnome-View-Refresh-32.png
    │       │   ├── QXR.ico
    │       │   └── Setupbanner.bmp
    │       ├── Libraries
    │       │   └── WeifenLuo.WinFormsUI.Docking.dll
    │       ├── QuickStream
    │       │   ├── bin
    │       │   │   └── Debug
    │       │   │       ├── QuickStream.dll
    │       │   │       └── QuickStream.pdb
    │       │   ├── ClassDiagram1.cd
    │       │   ├── EventArguments
    │       │   │   ├── ErrorOccuredEventArgs.cs
    │       │   │   ├── FoundItemEventArgs.cs
    │       │   │   ├── LineAddedEventArgs.cs
    │       │   │   └── ReadyForPresentationEventArgs.cs
    │       │   ├── obj
    │       │   │   └── Debug
    │       │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │       ├── QuickStream.csproj.FileListAbsolute.txt
    │       │   │       ├── QuickStream.dll
    │       │   │       ├── QuickStream.pdb
    │       │   │       └── TempPE
    │       │   ├── Properties
    │       │   │   └── AssemblyInfo.cs
    │       │   ├── QuickStream.csproj
    │       │   ├── QuickStreamReader.cs
    │       │   ├── QuickXmlReader.cs
    │       │   └── QuickXmlSearch.cs
    │       ├── Quick Xml Reader.sln
    │       ├── Quick Xml Reader.suo
    │       ├── QXR
    │       │   ├── app.config
    │       │   ├── bin
    │       │   │   ├── Debug
    │       │   │   │   ├── QuickStream.dll
    │       │   │   │   ├── QuickStream.pdb
    │       │   │   │   ├── QXR.application
    │       │   │   │   ├── QxrControls.dll
    │       │   │   │   ├── QxrControls.pdb
    │       │   │   │   ├── QXR.exe
    │       │   │   │   ├── QXR.exe.config
    │       │   │   │   ├── QXR.exe.manifest
    │       │   │   │   ├── QXR.pdb
    │       │   │   │   ├── QXR.vshost.application
    │       │   │   │   ├── QXR.vshost.exe
    │       │   │   │   ├── QXR.vshost.exe.config
    │       │   │   │   ├── QXR.vshost.exe.manifest
    │       │   │   │   └── WeifenLuo.WinFormsUI.Docking.dll
    │       │   │   └── Release
    │       │   ├── ClassDiagram1.cd
    │       │   ├── Forms
    │       │   │   ├── About.cs
    │       │   │   ├── About.Designer.cs
    │       │   │   ├── About.resx
    │       │   │   ├── Document.cs
    │       │   │   ├── Document.Designer.cs
    │       │   │   ├── Document.resx
    │       │   │   ├── LineJump.cs
    │       │   │   ├── LineJump.Designer.cs
    │       │   │   ├── LineJump.resx
    │       │   │   ├── Main.cs
    │       │   │   ├── Main.Designer.cs
    │       │   │   ├── Main.resx
    │       │   │   ├── SearchResults.cs
    │       │   │   ├── SearchResults.Designer.cs
    │       │   │   └── SearchResults.resx
    │       │   ├── obj
    │       │   │   └── x86
    │       │   │       └── Debug
    │       │   │           ├── DesignTimeResolveAssemblyReferences.cache
    │       │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │           ├── GenerateResource.read.1.tlog
    │       │   │           ├── GenerateResource.write.1.tlog
    │       │   │           ├── QXR.application
    │       │   │           ├── QXR.csproj.FileListAbsolute.txt
    │       │   │           ├── QXR.exe
    │       │   │           ├── QXR.exe.manifest
    │       │   │           ├── QXR.pdb
    │       │   │           ├── QXR.TrustInfo.xml
    │       │   │           ├── ResolveAssemblyReference.cache
    │       │   │           ├── TempPE
    │       │   │           │   └── Properties.Resources.Designer.cs.dll
    │       │   │           ├── Trezorix.Qxr.Forms.About.resources
    │       │   │           ├── Trezorix.Qxr.Forms.Document.resources
    │       │   │           ├── Trezorix.Qxr.Forms.LineJump.resources
    │       │   │           ├── Trezorix.Qxr.Forms.Main.resources
    │       │   │           ├── Trezorix.Qxr.Forms.SearchResults.resources
    │       │   │           └── Trezorix.Qxr.Properties.Resources.resources
    │       │   ├── Program.cs
    │       │   ├── Properties
    │       │   │   ├── app.manifest
    │       │   │   ├── AssemblyInfo.cs
    │       │   │   ├── Resources.Designer.cs
    │       │   │   ├── Resources.resx
    │       │   │   ├── Settings.Designer.cs
    │       │   │   └── Settings.settings
    │       │   ├── QXR.csproj
    │       │   ├── QXR.csproj.user
    │       │   └── QXR.ico
    │       └── QxrControls
    │           ├── bin
    │           │   └── Debug
    │           │       ├── QxrControls.dll
    │           │       └── QxrControls.pdb
    │           ├── obj
    │           │   └── Debug
    │           │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │           │       ├── QxrControls.csproj.FileListAbsolute.txt
    │           │       ├── QxrControls.dll
    │           │       ├── QxrControls.pdb
    │           │       └── TempPE
    │           ├── Properties
    │           │   └── AssemblyInfo.cs
    │           ├── QxrControls.csproj
    │           ├── QxrControls.csproj.user
    │           ├── RichTextBoxDocument.cs
    │           └── TrezorixListview.cs
    ├── Chp5
    │   └── MVMFileManagerDragAndDrop
    │       ├── MVMFileManager
    │       │   ├── App.xaml
    │       │   ├── App.xaml.cs
    │       │   ├── Bin
    │       │   │   ├── Debug
    │       │   │   │   ├── AppManifest.xaml
    │       │   │   │   ├── ar
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── bg
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── ca
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── Cokkiy.Display.WaitingIcon.dll
    │       │   │   │   ├── cs
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── da
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── de
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Navigation.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.resources.dll
    │       │   │   │   │   └── System.Windows.Data.resources.dll
    │       │   │   │   ├── el
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── es
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Navigation.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.resources.dll
    │       │   │   │   │   └── System.Windows.Data.resources.dll
    │       │   │   │   ├── et
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── eu
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── fi
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── fr
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Navigation.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.resources.dll
    │       │   │   │   │   └── System.Windows.Data.resources.dll
    │       │   │   │   ├── he
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── hr
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── hu
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── id
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── it
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Navigation.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.resources.dll
    │       │   │   │   │   └── System.Windows.Data.resources.dll
    │       │   │   │   ├── ja
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Navigation.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.resources.dll
    │       │   │   │   │   └── System.Windows.Data.resources.dll
    │       │   │   │   ├── ko
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Navigation.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.resources.dll
    │       │   │   │   │   └── System.Windows.Data.resources.dll
    │       │   │   │   ├── lt
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── lv
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── ms
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── MVMFileManager.dll
    │       │   │   │   ├── MVMFileManager.pdb
    │       │   │   │   ├── MVMFileManager.xap
    │       │   │   │   ├── nl
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── no
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── pl
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── pt
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── pt-BR
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── ro
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── ru
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Navigation.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.resources.dll
    │       │   │   │   │   └── System.Windows.Data.resources.dll
    │       │   │   │   ├── sk
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── sl
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── sr-Cyrl-CS
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── sr-Latn-CS
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── sv
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── System.ComponentModel.DataAnnotations.dll
    │       │   │   │   ├── System.ComponentModel.DataAnnotations.xml
    │       │   │   │   ├── System.Windows.Controls.Data.dll
    │       │   │   │   ├── System.Windows.Controls.Data.Input.dll
    │       │   │   │   ├── System.Windows.Controls.Data.Input.xml
    │       │   │   │   ├── System.Windows.Controls.Data.xml
    │       │   │   │   ├── System.Windows.Controls.dll
    │       │   │   │   ├── System.Windows.Controls.Layout.Toolkit.dll
    │       │   │   │   ├── System.Windows.Controls.Layout.Toolkit.pdb
    │       │   │   │   ├── System.Windows.Controls.Layout.Toolkit.xml
    │       │   │   │   ├── System.Windows.Controls.Navigation.dll
    │       │   │   │   ├── System.Windows.Controls.Navigation.xml
    │       │   │   │   ├── System.Windows.Controls.Toolkit.dll
    │       │   │   │   ├── System.Windows.Controls.Toolkit.Internals.dll
    │       │   │   │   ├── System.Windows.Controls.Toolkit.pdb
    │       │   │   │   ├── System.Windows.Controls.Toolkit.xml
    │       │   │   │   ├── System.Windows.Controls.xml
    │       │   │   │   ├── System.Windows.Data.dll
    │       │   │   │   ├── System.Windows.Data.xml
    │       │   │   │   ├── System.Windows.Interactivity.dll
    │       │   │   │   ├── System.Windows.Interactivity.xml
    │       │   │   │   ├── TestPage.html
    │       │   │   │   ├── th
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── tr
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── uk
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── vi
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── zh-Hans
    │       │   │   │   │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.Navigation.resources.dll
    │       │   │   │   │   ├── System.Windows.Controls.resources.dll
    │       │   │   │   │   └── System.Windows.Data.resources.dll
    │       │   │   │   └── zh-Hant
    │       │   │   │       ├── System.ComponentModel.DataAnnotations.resources.dll
    │       │   │   │       ├── System.Windows.Controls.Data.Input.resources.dll
    │       │   │   │       ├── System.Windows.Controls.Data.resources.dll
    │       │   │   │       ├── System.Windows.Controls.Navigation.resources.dll
    │       │   │   │       ├── System.Windows.Controls.resources.dll
    │       │   │   │       └── System.Windows.Data.resources.dll
    │       │   │   └── Release
    │       │   ├── BusyIndicator.xaml
    │       │   ├── Classes
    │       │   │   ├── DelegateCommand.cs
    │       │   │   ├── FileUpload.cs
    │       │   │   └── UploadProgressChangedEventArgs.cs
    │       │   ├── GridSplittersMVVM.xaml
    │       │   ├── Images
    │       │   │   ├── FamFamIconsLicense.txt
    │       │   │   ├── folder.png
    │       │   │   └── page_white.png
    │       │   ├── MainPage.xaml
    │       │   ├── MainPage.xaml.cs
    │       │   ├── Models
    │       │   │   └── SilverlightFolders.cs
    │       │   ├── MVMFileManager.csproj
    │       │   ├── MVMFileManager.csproj.user
    │       │   ├── obj
    │       │   │   └── Debug
    │       │   │       ├── App.g.cs
    │       │   │       ├── App.g.i.cs
    │       │   │       ├── DesignTimeResolveAssemblyReferences.cache
    │       │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │       ├── FileUpload
    │       │   │       │   ├── FileUploadControl.g.cs
    │       │   │       │   └── FileUploadRowControl.g.cs
    │       │   │       ├── MainPage.g.cs
    │       │   │       ├── MainPage.g.i.cs
    │       │   │       ├── MainPages.g.cs
    │       │   │       ├── MVMFileManager.csproj.FileListAbsolute.txt
    │       │   │       ├── MVMFileManager.dll
    │       │   │       ├── MVMFileManager.g.resources
    │       │   │       ├── MVMFileManager.pdb
    │       │   │       ├── ResolveAssemblyReference.cache
    │       │   │       ├── Styles
    │       │   │       ├── TempPE
    │       │   │       │   └── Service References.FileManager.Reference.cs.dll
    │       │   │       └── XapCacheFile.xml
    │       │   ├── PictureFrames.xaml
    │       │   ├── Properties
    │       │   │   ├── AppManifest.xml
    │       │   │   └── AssemblyInfo.cs
    │       │   ├── SampleData
    │       │   │   └── MainViewModelSampleData.xaml
    │       │   ├── ScrollBarsMVVM.xaml
    │       │   ├── Service References
    │       │   │   └── FileManager
    │       │   │       ├── configuration91.svcinfo
    │       │   │       ├── configuration.svcinfo
    │       │   │       ├── MVMFileManager.FileManager.GetLocalFilesResponse.datasource
    │       │   │       ├── MVMFileManager.FileManager.GetLocalFoldersResponse.datasource
    │       │   │       ├── Reference.cs
    │       │   │       ├── Reference.svcmap
    │       │   │       ├── WebService.disco
    │       │   │       └── WebService.wsdl
    │       │   ├── ServiceReferences.ClientConfig
    │       │   └── ViewModels
    │       │       └── MainViewModel.cs
    │       ├── MVMFileManagerSite
    │       │   ├── App_Code
    │       │   │   ├── ClassDiagram.cd
    │       │   │   ├── FilesAndFolders.cs
    │       │   │   ├── FileUploadProcess.cs
    │       │   │   └── WebService.cs
    │       │   ├── ClientBin
    │       │   │   └── MVMFileManager.xap
    │       │   ├── Default.aspx
    │       │   ├── Default.aspx.cs
    │       │   ├── Files
    │       │   │   ├── Folder1
    │       │   │   │   ├── Default.rdp
    │       │   │   │   ├── Folder1-1
    │       │   │   │   │   ├── Folder1-1-1
    │       │   │   │   │   │   ├── Folder1-1-1-1
    │       │   │   │   │   │   │   ├── TextFile1-1-1-1.txt
    │       │   │   │   │   │   │   ├── TextFile1-1-1-2.txt
    │       │   │   │   │   │   │   └── Thumbs.db
    │       │   │   │   │   │   ├── Folder1-1-1-2
    │       │   │   │   │   │   │   ├── TextFile1-1-1-1.txt
    │       │   │   │   │   │   │   ├── TextFile1-1-1-2.txt
    │       │   │   │   │   │   │   └── 电脑桌.jpg
    │       │   │   │   │   │   ├── TextFile1-1-1.txt
    │       │   │   │   │   │   ├── TextFile1-1-2.txt
    │       │   │   │   │   │   └── Thumbs.db
    │       │   │   │   │   ├── Folder1-1-2
    │       │   │   │   │   │   ├── TextFile1-1-1.txt
    │       │   │   │   │   │   └── TextFile1-1-2.txt
    │       │   │   │   │   ├── TextFile1-1.txt
    │       │   │   │   │   └── TextFile1-2.txt
    │       │   │   │   ├── Folder1-2
    │       │   │   │   │   ├── 2个案例.rar
    │       │   │   │   │   ├── TextFile1-1.txt
    │       │   │   │   │   └── TextFile1-2.txt
    │       │   │   │   ├── Folder1-3
    │       │   │   │   │   ├── TextFile1-1.txt
    │       │   │   │   │   └── TextFile1-2.txt
    │       │   │   │   ├── Folder1-4
    │       │   │   │   │   ├── TextFile1-1.txt
    │       │   │   │   │   └── TextFile1-2.txt
    │       │   │   │   ├── TextFile1-1.txt
    │       │   │   │   ├── TextFile1-2.txt
    │       │   │   │   └── Thumbs.db
    │       │   │   ├── Folder2
    │       │   │   │   ├── 20100512071252.jpg
    │       │   │   │   ├── TextFile1-1.txt
    │       │   │   │   ├── TextFile1-2.txt
    │       │   │   │   └── Thumbs.db
    │       │   │   ├── Folder3
    │       │   │   │   ├── TextFile1-1.txt
    │       │   │   │   └── TextFile1-2.txt
    │       │   │   ├── Folder4
    │       │   │   │   ├── 1181519390352.jpg
    │       │   │   │   ├── TextFile1-1.txt
    │       │   │   │   └── TextFile1-2.txt
    │       │   │   ├── Folder5
    │       │   │   │   ├── TextFile1-1.txt
    │       │   │   │   └── TextFile1-2.txt
    │       │   │   ├── Folder6
    │       │   │   │   ├── TextFile1-1.txt
    │       │   │   │   └── TextFile1-2.txt
    │       │   │   ├── Folder7
    │       │   │   │   ├── TextFile1-1.txt
    │       │   │   │   └── TextFile1-2.txt
    │       │   │   ├── Folder8
    │       │   │   │   ├── TextFile1-1.txt
    │       │   │   │   └── TextFile1-2.txt
    │       │   │   ├── Folder9
    │       │   │   │   ├── TextFile1-1.txt
    │       │   │   │   └── TextFile1-2.txt
    │       │   │   └── Thumbs.db
    │       │   ├── Silverlight.js
    │       │   ├── Web.config
    │       │   └── Webservice
    │       │       ├── DownloadFile.aspx
    │       │       ├── DownloadFile.aspx.cs
    │       │       ├── FileUpload.ashx
    │       │       └── WebService.asmx
    │       ├── MVMFileManager.sln
    │       ├── MVMFileManager.suo
    │       └── PrecompiledWeb
    │           └── MVMFileManagerSite
    │               ├── bin
    │               │   ├── App_Code.compiled
    │               │   ├── App_Code.dll
    │               │   ├── App_Code.pdb
    │               │   ├── App_Web_mdqgbmcm.dll
    │               │   ├── App_Web_mdqgbmcm.pdb
    │               │   ├── App_Web_vc0lwkfp.dll
    │               │   └── App_Web_vc0lwkfp.pdb
    │               ├── ClientBin
    │               │   └── MVMFileManager.xap
    │               ├── Default.aspx
    │               ├── Files
    │               │   ├── Folder1
    │               │   │   ├── Default.rdp
    │               │   │   ├── Folder1-1
    │               │   │   │   ├── Folder1-1-1
    │               │   │   │   │   ├── Folder1-1-1-1
    │               │   │   │   │   │   ├── TextFile1-1-1-1.txt
    │               │   │   │   │   │   └── TextFile1-1-1-2.txt
    │               │   │   │   │   ├── Folder1-1-1-2
    │               │   │   │   │   │   ├── TextFile1-1-1-1.txt
    │               │   │   │   │   │   └── TextFile1-1-1-2.txt
    │               │   │   │   │   ├── TextFile1-1-1.txt
    │               │   │   │   │   └── TextFile1-1-2.txt
    │               │   │   │   ├── Folder1-1-2
    │               │   │   │   │   ├── TextFile1-1-1.txt
    │               │   │   │   │   └── TextFile1-1-2.txt
    │               │   │   │   ├── TextFile1-1.txt
    │               │   │   │   └── TextFile1-2.txt
    │               │   │   ├── Folder1-2
    │               │   │   │   ├── TextFile1-1.txt
    │               │   │   │   └── TextFile1-2.txt
    │               │   │   ├── Folder1-3
    │               │   │   │   ├── TextFile1-1.txt
    │               │   │   │   └── TextFile1-2.txt
    │               │   │   ├── Folder1-4
    │               │   │   │   ├── TextFile1-1.txt
    │               │   │   │   └── TextFile1-2.txt
    │               │   │   ├── TextFile1-1.txt
    │               │   │   └── TextFile1-2.txt
    │               │   ├── Folder2
    │               │   │   ├── 20100512071252.jpg
    │               │   │   ├── TextFile1-1.txt
    │               │   │   └── TextFile1-2.txt
    │               │   ├── Folder3
    │               │   │   ├── TextFile1-1.txt
    │               │   │   └── TextFile1-2.txt
    │               │   ├── Folder4
    │               │   │   ├── 1181519390352.jpg
    │               │   │   ├── TextFile1-1.txt
    │               │   │   └── TextFile1-2.txt
    │               │   ├── Folder5
    │               │   │   ├── TextFile1-1.txt
    │               │   │   └── TextFile1-2.txt
    │               │   ├── Folder6
    │               │   │   ├── TextFile1-1.txt
    │               │   │   └── TextFile1-2.txt
    │               │   ├── Folder7
    │               │   │   ├── TextFile1-1.txt
    │               │   │   └── TextFile1-2.txt
    │               │   ├── Folder8
    │               │   │   ├── TextFile1-1.txt
    │               │   │   └── TextFile1-2.txt
    │               │   └── Folder9
    │               │       ├── TextFile1-1.txt
    │               │       └── TextFile1-2.txt
    │               ├── PrecompiledApp.config
    │               ├── Silverlight.js
    │               ├── Web.config
    │               └── Webservice
    │                   ├── DownloadFile.aspx
    │                   ├── FileUpload.ashx
    │                   └── WebService.asmx
    ├── Chp6
    │   ├── MVVMVideoPlayer
    │   │   ├── MVVMVideoPlayer_Test
    │   │   │   ├── App.xaml
    │   │   │   ├── App.xaml.cs
    │   │   │   ├── Bin
    │   │   │   │   ├── Debug
    │   │   │   │   │   ├── AppManifest.xaml
    │   │   │   │   │   ├── ar
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── bg
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── ca
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── cs
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── da
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── de
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── el
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── es
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── et
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── eu
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── fi
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── fr
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── he
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── hr
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── hu
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── id
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── it
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── ja
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── ko
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── lt
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── lv
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── Microsoft.Expression.Interactions.dll
    │   │   │   │   │   ├── Microsoft.Expression.Interactions.xml
    │   │   │   │   │   ├── ms
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── MVVMVideoPlayer_Test.dll
    │   │   │   │   │   ├── MVVMVideoPlayer_Test.pdb
    │   │   │   │   │   ├── MVVMVideoPlayer_Test.xap
    │   │   │   │   │   ├── nl
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── no
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── pl
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── pt
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── pt-BR
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── ro
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── ru
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── sk
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── sl
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── sr-Cyrl-CS
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── sr-Latn-CS
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── sv
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── System.CoreEx.dll
    │   │   │   │   │   ├── System.Observable.dll
    │   │   │   │   │   ├── System.Reactive.dll
    │   │   │   │   │   ├── System.Windows.Controls.dll
    │   │   │   │   │   ├── System.Windows.Controls.Toolkit.dll
    │   │   │   │   │   ├── System.Windows.Controls.Toolkit.Internals.dll
    │   │   │   │   │   ├── System.Windows.Controls.Toolkit.pdb
    │   │   │   │   │   ├── System.Windows.Controls.Toolkit.xml
    │   │   │   │   │   ├── System.Windows.Controls.xml
    │   │   │   │   │   ├── System.Windows.Interactivity.dll
    │   │   │   │   │   ├── System.Windows.Interactivity.xml
    │   │   │   │   │   ├── TestPage.html
    │   │   │   │   │   ├── th
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── tr
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── uk
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── vi
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   ├── zh-Hans
    │   │   │   │   │   │   └── System.Windows.Controls.resources.dll
    │   │   │   │   │   └── zh-Hant
    │   │   │   │   │       └── System.Windows.Controls.resources.dll
    │   │   │   │   └── Release
    │   │   │   ├── classes
    │   │   │   │   └── DelegateCommand.cs
    │   │   │   ├── MainPage1.xaml
    │   │   │   ├── MainPage1.xaml.cs
    │   │   │   ├── MainPage.xaml
    │   │   │   ├── MainPage.xaml.cs
    │   │   │   ├── Model
    │   │   │   │   └── SilverlightVideos.cs
    │   │   │   ├── MVVMVideoPlayer_Test.csproj
    │   │   │   ├── MVVMVideoPlayer_Test.csproj.user
    │   │   │   ├── obj
    │   │   │   │   └── Debug
    │   │   │   │       ├── App.g.cs
    │   │   │   │       ├── App.g.i.cs
    │   │   │   │       ├── DesignTimeResolveAssemblyReferences.cache
    │   │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   │       ├── MainPage1.g.cs
    │   │   │   │       ├── MainPage1.g.i.cs
    │   │   │   │       ├── MainPage.g.cs
    │   │   │   │       ├── MainPage.g.i.cs
    │   │   │   │       ├── MVVMVideoPlayer_Test.csproj.FileListAbsolute.txt
    │   │   │   │       ├── MVVMVideoPlayer_Test.dll
    │   │   │   │       ├── MVVMVideoPlayer_Test.g.resources
    │   │   │   │       ├── MVVMVideoPlayer_Test.pdb
    │   │   │   │       ├── ResolveAssemblyReference.cache
    │   │   │   │       ├── TempPE
    │   │   │   │       │   └── Service References.wsVideos.Reference.cs.dll
    │   │   │   │       └── XapCacheFile.xml
    │   │   │   ├── Properties
    │   │   │   │   ├── AppManifest.xml
    │   │   │   │   └── AssemblyInfo.cs
    │   │   │   ├── rxSampleCode.cs
    │   │   │   ├── Service References
    │   │   │   │   └── wsVideos
    │   │   │   │       ├── configuration91.svcinfo
    │   │   │   │       ├── configuration.svcinfo
    │   │   │   │       ├── MVVMVideoPlayer_Test.wsVideos.GetVideosResponse.datasource
    │   │   │   │       ├── Reference.cs
    │   │   │   │       ├── Reference.svcmap
    │   │   │   │       ├── WebService.disco
    │   │   │   │       └── WebService.wsdl
    │   │   │   ├── ServiceReferences.ClientConfig
    │   │   │   └── ViewModel
    │   │   │       └── MainViewModel.cs
    │   │   ├── MVVMVideoPlayer_TestSite
    │   │   │   ├── App_Code
    │   │   │   │   └── WebService.cs
    │   │   │   ├── ClientBin
    │   │   │   │   └── MVVMVideoPlayer_Test.xap
    │   │   │   ├── Default.html
    │   │   │   ├── favicon.ico
    │   │   │   ├── Silverlight.js
    │   │   │   ├── Video
    │   │   │   │   ├── desktop.ini
    │   │   │   │   ├── DING 2011-1-11 18.45.48
    │   │   │   │   │   └── _vti_pvt
    │   │   │   │   │       └── services.cnf
    │   │   │   │   ├── intro.wmv
    │   │   │   │   ├── niceday.wmv
    │   │   │   │   ├── sl.wmv
    │   │   │   │   └── Thumbs.db
    │   │   │   ├── Web.config
    │   │   │   └── Webservice
    │   │   │       └── WebService.asmx
    │   │   ├── MVVMVideoPlayer_Test.sln
    │   │   ├── MVVMVideoPlayer_Test.suo
    │   │   └── PrecompiledWeb
    │   │       └── MVVMVideoPlayer_TestSite
    │   │           ├── bin
    │   │           │   ├── App_Code.compiled
    │   │           │   ├── App_Code.dll
    │   │           │   └── App_Code.pdb
    │   │           ├── ClientBin
    │   │           │   └── MVVMVideoPlayer_Test.xap
    │   │           ├── Default.html
    │   │           ├── favicon.ico
    │   │           ├── PrecompiledApp.config
    │   │           ├── Silverlight.js
    │   │           ├── Video
    │   │           │   ├── niceday.wmv
    │   │           │   └── sl.wmv
    │   │           ├── Web.config
    │   │           └── Webservice
    │   │               └── WebService.asmx
    │   └── RXDemos
    │       ├── ExternalDlls
    │       │   ├── System.ComponentModel.Composition.dll
    │       │   ├── System.ComponentModel.Composition.Initialization.dll
    │       │   ├── System.CoreEx.dll
    │       │   ├── System.Interactive.dll
    │       │   ├── System.Reactive.dll
    │       │   ├── System.Windows.Controls.Input.Toolkit.dll
    │       │   └── System.Windows.Controls.Toolkit.dll
    │       ├── RXDemos
    │       │   ├── App.xaml
    │       │   ├── App.xaml.cs
    │       │   ├── Bin
    │       │   │   ├── Debug
    │       │   │   │   ├── AppManifest.xaml
    │       │   │   │   ├── ar
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── bg
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── ca
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── cs
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── da
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── de
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── el
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── es
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── et
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── eu
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── fi
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── fr
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── he
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── hr
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── hu
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── id
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── it
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── ja
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── ko
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── lt
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── lv
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── ms
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── nl
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── no
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── pl
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── pt
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── pt-BR
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── ro
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── ru
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── RXDemos.dll
    │       │   │   │   ├── RXDemos.pdb
    │       │   │   │   ├── RXDemos.xap
    │       │   │   │   ├── sk
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── sl
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── sr-Cyrl-CS
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── sr-Latn-CS
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── sv
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── System.ComponentModel.Composition.dll
    │       │   │   │   ├── System.ComponentModel.Composition.Initialization.dll
    │       │   │   │   ├── System.CoreEx.dll
    │       │   │   │   ├── System.Interactive.dll
    │       │   │   │   ├── System.Reactive.dll
    │       │   │   │   ├── System.Windows.Controls.dll
    │       │   │   │   ├── System.Windows.Controls.xml
    │       │   │   │   ├── TestPage.html
    │       │   │   │   ├── th
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── tr
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── uk
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── vi
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   ├── zh-Hans
    │       │   │   │   │   └── System.Windows.Controls.resources.dll
    │       │   │   │   └── zh-Hant
    │       │   │   │       └── System.Windows.Controls.resources.dll
    │       │   │   └── Release
    │       │   ├── BusinessObjectBase.cs
    │       │   ├── DelegateCommand.cs
    │       │   ├── Demo1
    │       │   │   ├── Demo1.xaml
    │       │   │   └── Demo1.xaml.cs
    │       │   ├── Demo2
    │       │   │   ├── Demo2.xaml
    │       │   │   └── Demo2.xaml.cs
    │       │   ├── Demo3
    │       │   │   ├── Demo3.xaml
    │       │   │   └── Demo3.xaml.cs
    │       │   ├── Demo4
    │       │   │   ├── Demo4.xaml
    │       │   │   └── Demo4.xaml.cs
    │       │   ├── Demo5
    │       │   │   ├── CalculationData.cs
    │       │   │   ├── Demo5ViewModel.cs
    │       │   │   ├── Demo5.xaml
    │       │   │   ├── Demo5.xaml.cs
    │       │   │   ├── NineDigitsOfPiAt.cs
    │       │   │   └── StringToIntConverter.cs
    │       │   ├── Interfaces
    │       │   │   └── IView.cs
    │       │   ├── MainPage.xaml
    │       │   ├── MainPage.xaml.cs
    │       │   ├── obj
    │       │   │   └── Debug
    │       │   │       ├── App.g.cs
    │       │   │       ├── App.g.i.cs
    │       │   │       ├── Demo1
    │       │   │       │   ├── Demo1.g.cs
    │       │   │       │   └── Demo1.g.i.cs
    │       │   │       ├── Demo2
    │       │   │       │   ├── Demo2.g.cs
    │       │   │       │   └── Demo2.g.i.cs
    │       │   │       ├── Demo3
    │       │   │       │   ├── Demo3.g.cs
    │       │   │       │   └── Demo3.g.i.cs
    │       │   │       ├── Demo4
    │       │   │       │   ├── Demo4.g.cs
    │       │   │       │   └── Demo4.g.i.cs
    │       │   │       ├── Demo5
    │       │   │       │   ├── Demo5.g.cs
    │       │   │       │   └── Demo5.g.i.cs
    │       │   │       ├── DesignTimeResolveAssemblyReferences.cache
    │       │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │       ├── MainPage.g.cs
    │       │   │       ├── MainPage.g.i.cs
    │       │   │       ├── ResolveAssemblyReference.cache
    │       │   │       ├── RXDemos.csproj.FileListAbsolute.txt
    │       │   │       ├── RXDemos.dll
    │       │   │       ├── RXDemos.g.resources
    │       │   │       ├── RXDemos.pdb
    │       │   │       ├── TempPE
    │       │   │       └── XapCacheFile.xml
    │       │   ├── Properties
    │       │   │   ├── AppManifest.xml
    │       │   │   └── AssemblyInfo.cs
    │       │   ├── RXDemos.csproj
    │       │   ├── RXDemos.csproj.user
    │       │   └── SilverlightShow.png
    │       ├── RXDemos.sln
    │       ├── RXDemos.suo
    │       └── RXDemos.Web
    │           ├── bin
    │           │   ├── RXDemos.Web.dll
    │           │   └── RXDemos.Web.pdb
    │           ├── ClientBin
    │           │   └── RXDemos.xap
    │           ├── obj
    │           │   └── Debug
    │           │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │           │       ├── RXDemos.Web.csproj.FileListAbsolute.txt
    │           │       ├── RXDemos.Web.dll
    │           │       ├── RXDemos.Web.pdb
    │           │       └── TempPE
    │           ├── Properties
    │           │   └── AssemblyInfo.cs
    │           ├── RXDemosTestPage.aspx
    │           ├── RXDemosTestPage.html
    │           ├── RXDemos.Web.csproj
    │           ├── RXDemos.Web.csproj.user
    │           ├── Silverlight.js
    │           ├── Web.config
    │           ├── Web.Debug.config
    │           └── Web.Release.config
    ├── Chp7
    │   ├── Bricks.Silverlight
    │   │   ├── App.xaml
    │   │   ├── App.xaml.cs
    │   │   ├── Assemblies
    │   │   ├── Bin
    │   │   │   └── Debug
    │   │   │       ├── AppManifest.xaml
    │   │   │       ├── ar
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── bg
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── Bricks.Silverlight.Core.dll
    │   │   │       ├── Bricks.Silverlight.Core.pdb
    │   │   │       ├── Bricks.Silverlight.dll
    │   │   │       ├── Bricks.Silverlight.pdb
    │   │   │       ├── Bricks.SilverlightTestPage.html
    │   │   │       ├── Bricks.Silverlight.xap
    │   │   │       ├── ca
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── cp.png
    │   │   │       ├── cs
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── da
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── de
    │   │   │       │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       │   ├── System.ServiceModel.DomainServices.Client.resources.dll
    │   │   │       │   ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
    │   │   │       │   └── System.ServiceModel.Web.Extensions.resources.dll
    │   │   │       ├── el
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── es
    │   │   │       │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       │   ├── System.ServiceModel.DomainServices.Client.resources.dll
    │   │   │       │   ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
    │   │   │       │   └── System.ServiceModel.Web.Extensions.resources.dll
    │   │   │       ├── et
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── eu
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── fi
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── fr
    │   │   │       │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       │   ├── System.ServiceModel.DomainServices.Client.resources.dll
    │   │   │       │   ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
    │   │   │       │   └── System.ServiceModel.Web.Extensions.resources.dll
    │   │   │       ├── GalaSoft.MvvmLight.dll
    │   │   │       ├── he
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── hr
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── hu
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── id
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── Images
    │   │   │       │   └── cp.png
    │   │   │       ├── it
    │   │   │       │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       │   ├── System.ServiceModel.DomainServices.Client.resources.dll
    │   │   │       │   ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
    │   │   │       │   └── System.ServiceModel.Web.Extensions.resources.dll
    │   │   │       ├── ja
    │   │   │       │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       │   ├── System.ServiceModel.DomainServices.Client.resources.dll
    │   │   │       │   ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
    │   │   │       │   └── System.ServiceModel.Web.Extensions.resources.dll
    │   │   │       ├── ko
    │   │   │       │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       │   ├── System.ServiceModel.DomainServices.Client.resources.dll
    │   │   │       │   ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
    │   │   │       │   └── System.ServiceModel.Web.Extensions.resources.dll
    │   │   │       ├── lt
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── lv
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── ms
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── nl
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── no
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── pl
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── pt
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── pt-BR
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── ro
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── ru
    │   │   │       │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       │   ├── System.ServiceModel.DomainServices.Client.resources.dll
    │   │   │       │   ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
    │   │   │       │   └── System.ServiceModel.Web.Extensions.resources.dll
    │   │   │       ├── sk
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── sl
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── sr-Cyrl-CS
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── sr-Latn-CS
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── sv
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── System.ComponentModel.DataAnnotations.dll
    │   │   │       ├── System.ComponentModel.DataAnnotations.xml
    │   │   │       ├── System.ComponentModel.DataAnnotations.zip
    │   │   │       ├── System.ServiceModel.DomainServices.Client.dll
    │   │   │       ├── System.ServiceModel.DomainServices.Client.Web.dll
    │   │   │       ├── System.ServiceModel.DomainServices.Client.Web.xml
    │   │   │       ├── System.ServiceModel.DomainServices.Client.Web.zip
    │   │   │       ├── System.ServiceModel.DomainServices.Client.xml
    │   │   │       ├── System.ServiceModel.DomainServices.Client.zip
    │   │   │       ├── System.ServiceModel.Web.Extensions.dll
    │   │   │       ├── System.ServiceModel.Web.Extensions.xml
    │   │   │       ├── System.ServiceModel.Web.Extensions.zip
    │   │   │       ├── th
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── tr
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── uk
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── vi
    │   │   │       │   └── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       ├── zh-Hans
    │   │   │       │   ├── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │       │   ├── System.ServiceModel.DomainServices.Client.resources.dll
    │   │   │       │   ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
    │   │   │       │   └── System.ServiceModel.Web.Extensions.resources.dll
    │   │   │       └── zh-Hant
    │   │   │           ├── System.ComponentModel.DataAnnotations.resources.dll
    │   │   │           ├── System.ServiceModel.DomainServices.Client.resources.dll
    │   │   │           ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
    │   │   │           └── System.ServiceModel.Web.Extensions.resources.dll
    │   │   ├── BooleanToVisibilityConverter.cs
    │   │   ├── Bricks.Silverlight.csproj
    │   │   ├── Bricks.Silverlight.csproj.user
    │   │   ├── Bricks.Silverlight.suo
    │   │   ├── ButtonService.cs
    │   │   ├── ClassDiagram1.cd
    │   │   ├── Commands
    │   │   │   ├── PauseCommand.cs
    │   │   │   ├── StartCommand.cs
    │   │   │   └── StopCommand.cs
    │   │   ├── Controls
    │   │   │   ├── ctlBrick.cs
    │   │   │   ├── ctlTremblingCanvas.cs
    │   │   │   ├── ctlTremblingGrid.cs
    │   │   │   └── ctlTremblingRectangle.cs
    │   │   ├── cp.png
    │   │   ├── DelegateCommand.cs
    │   │   ├── Generated_Code
    │   │   │   └── Bricks.Silverlight.Web.g.cs
    │   │   ├── Images
    │   │   │   └── cp.png
    │   │   ├── obj
    │   │   │   └── Debug
    │   │   │       ├── App.g.cs
    │   │   │       ├── App.g.i.cs
    │   │   │       ├── Bricks.Silverlight.csproj.FileListAbsolute.txt
    │   │   │       ├── Bricks.Silverlight.dll
    │   │   │       ├── Bricks.Silverlight.g.resources
    │   │   │       ├── Bricks.Silverlight.pdb
    │   │   │       ├── Bricks.Silverlight.RiaClientRefs.txt
    │   │   │       ├── Bricks.Silverlight.RiaFiles.txt
    │   │   │       ├── Bricks.Silverlight.RiaLinks.txt
    │   │   │       ├── Bricks.Silverlight.RiaServerRefs.txt
    │   │   │       ├── Bricks.Silverlight.RiaSourceFiles.txt
    │   │   │       ├── DesignTimeResolveAssemblyReferences.cache
    │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │       ├── ResolveAssemblyReference.cache
    │   │   │       ├── System.ComponentModel.DataAnnotations.zip.cache
    │   │   │       ├── System.ServiceModel.DomainServices.Client.Web.zip.cache
    │   │   │       ├── System.ServiceModel.DomainServices.Client.zip.cache
    │   │   │       ├── System.ServiceModel.Web.Extensions.zip.cache
    │   │   │       ├── TempPE
    │   │   │       ├── Views
    │   │   │       │   ├── BricksView.g.cs
    │   │   │       │   └── BricksView.g.i.cs
    │   │   │       └── XapCacheFile.xml
    │   │   ├── ObservableNotifiableCollection.cs
    │   │   ├── Properties
    │   │   │   ├── AppManifest.xml
    │   │   │   └── AssemblyInfo.cs
    │   │   ├── RelayCommand.cs
    │   │   ├── SetterValueBindingHelper.cs
    │   │   ├── ViewModels
    │   │   │   └── BricksViewModel.cs
    │   │   └── Views
    │   │       ├── BricksView.xaml
    │   │       └── BricksView.xaml.cs
    │   ├── Bricks.Silverlight.Core
    │   │   ├── BaseBricksArray.cs
    │   │   ├── Bin
    │   │   │   └── Debug
    │   │   │       ├── Bricks.Silverlight.Core.dll
    │   │   │       └── Bricks.Silverlight.Core.pdb
    │   │   ├── Brick.cs
    │   │   ├── BricksBoard.cs
    │   │   ├── BricksPresenter.cs
    │   │   ├── Bricks.Silverlight.Core.csproj
    │   │   ├── Bricks.Silverlight.Core.csproj.user
    │   │   ├── ClassDiagram1.cd
    │   │   ├── ClassDiagram2.cd
    │   │   ├── Exceptions
    │   │   │   └── BricksExceptions.cs
    │   │   ├── IBoard.cs
    │   │   ├── IBrick.cs
    │   │   ├── IBricksArray.cs
    │   │   ├── IPresenter.cs
    │   │   ├── IView.cs
    │   │   ├── obj
    │   │   │   └── Debug
    │   │   │       ├── Bricks.Silverlight.Core.csproj.FileListAbsolute.txt
    │   │   │       ├── Bricks.Silverlight.Core.dll
    │   │   │       ├── Bricks.Silverlight.Core.pdb
    │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │       └── TempPE
    │   │   ├── Properties
    │   │   │   └── AssemblyInfo.cs
    │   │   ├── Shapes
    │   │   │   ├── BaseShape.cs
    │   │   │   ├── IShape.cs
    │   │   │   ├── JShape.cs
    │   │   │   ├── LShape.cs
    │   │   │   ├── OShape.cs
    │   │   │   ├── SShape.cs
    │   │   │   ├── StickShape.cs
    │   │   │   ├── TShape.cs
    │   │   │   └── ZShape.cs
    │   │   └── StopWatch.cs
    │   ├── Bricks.Silverlight.sln
    │   ├── Bricks.Silverlight.suo
    │   └── Bricks.Silverlight.Web
    │       ├── bin
    │       │   ├── Bricks.Silverlight.Web.dll
    │       │   └── Bricks.Silverlight.Web.pdb
    │       ├── Brick.aspx
    │       ├── Bricks.SilverlightTestPage.aspx
    │       ├── Bricks.SilverlightTestPage.html
    │       ├── Bricks.Silverlight.Web.csproj
    │       ├── Bricks.Silverlight.Web.csproj.user
    │       ├── Bricks.Silverlight.Web.Publish.xml
    │       ├── ClientBin
    │       │   ├── Bricks.Silverlight.xap
    │       │   ├── Debug
    │       │   │   └── Bricks.Silverlight.xap
    │       │   ├── System.ComponentModel.DataAnnotations.zip
    │       │   ├── System.ServiceModel.DomainServices.Client.Web.zip
    │       │   ├── System.ServiceModel.DomainServices.Client.zip
    │       │   ├── System.ServiceModel.Web.Extensions.zip
    │       │   └── Views
    │       │       ├── Click01.mp3
    │       │       ├── cp.png
    │       │       └── Drums.mp3
    │       ├── obj
    │       │   └── Debug
    │       │       ├── Bricks.Silverlight.Web.csproj.FileListAbsolute.txt
    │       │       ├── Bricks.Silverlight.Web.dll
    │       │       ├── Bricks.Silverlight.Web.g.resources
    │       │       ├── Bricks.Silverlight.Web.pdb
    │       │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │       └── TempPE
    │       ├── Properties
    │       │   └── AssemblyInfo.cs
    │       ├── Service References
    │       ├── Silverlight.js
    │       ├── Web.config
    │       ├── Web.Debug.config
    │       └── Web.Release.config
    ├── Chp8
    │   ├── AboutWindow.xaml
    │   ├── AboutWindow.xaml.cs
    │   ├── app.config
    │   ├── App.xaml
    │   ├── App.xaml.cs
    │   ├── bin
    │   │   ├── Debug
    │   │   │   ├── BookReader.application
    │   │   │   ├── BookReader.bin
    │   │   │   ├── BookReader.bin2
    │   │   │   ├── BookReader.exe
    │   │   │   ├── BookReader.exe.config
    │   │   │   ├── BookReader.exe.manifest
    │   │   │   ├── BookReader.log
    │   │   │   ├── BookReader.pdb
    │   │   │   ├── BookReader.vshost.application
    │   │   │   ├── BookReader.vshost.exe
    │   │   │   ├── BookReader.vshost.exe.config
    │   │   │   ├── BookReader.vshost.exe.manifest
    │   │   │   ├── Dependencies
    │   │   │   │   ├── 7z.dll
    │   │   │   │   └── pdftohtml.exe
    │   │   │   ├── SevenZipSharp.dll
    │   │   │   └── WPFToolkit.dll
    │   │   └── Release
    │   ├── BookReader.csproj
    │   ├── BookReader.csproj.user
    │   ├── BookReader.sln
    │   ├── BookReader.suo
    │   ├── ClassDiagram1.cd
    │   ├── Dependencies
    │   │   ├── 7z.dll
    │   │   ├── pdftohtml.exe
    │   │   ├── SevenZipSharp.dll
    │   │   └── WPFToolkit.dll
    │   ├── MagnifyGlass.xaml
    │   ├── MagnifyGlass.xaml.cs
    │   ├── MainWindow.xaml
    │   ├── MainWindow.xaml.cs
    │   ├── obj
    │   │   └── Debug
    │   │       ├── AboutWindow.baml
    │   │       ├── AboutWindow.g.cs
    │   │       ├── App.baml
    │   │       ├── App.g.cs
    │   │       ├── BookReader.application
    │   │       ├── BookReader_Content.g.cs
    │   │       ├── BookReader.csproj.FileListAbsolute.txt
    │   │       ├── BookReader.exe
    │   │       ├── BookReader.exe.manifest
    │   │       ├── BookReader.g.resources
    │   │       ├── BookReader_MarkupCompile.cache
    │   │       ├── BookReader_MarkupCompile.lref
    │   │       ├── BookReader.pdb
    │   │       ├── BookReader.Properties.Resources.resources
    │   │       ├── BookReader.TrustInfo.xml
    │   │       ├── DesignTimeResolveAssemblyReferences.cache
    │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │       ├── GeneratedInternalTypeHelper.g.cs
    │   │       ├── GenerateResource-ResGen.read.1.tlog
    │   │       ├── GenerateResource-ResGen.write.1.tlog
    │   │       ├── MagnifyGlass.baml
    │   │       ├── MagnifyGlass.g.cs
    │   │       ├── MainWindow.baml
    │   │       ├── MainWindow.g.cs
    │   │       ├── OptionWindow.baml
    │   │       ├── OptionWindow.g.cs
    │   │       ├── PageViewer.baml
    │   │       ├── PageViewer.g.cs
    │   │       ├── Reader
    │   │       │   ├── DebugWindow.baml
    │   │       │   └── DebugWindow.g.cs
    │   │       ├── ResolveAssemblyReference.cache
    │   │       ├── Resources
    │   │       │   ├── GridSplitterExpander.baml
    │   │       │   ├── Shared.baml
    │   │       │   ├── Theme
    │   │       │   │   └── ExpressionDark.baml
    │   │       │   └── Windows.baml
    │   │       └── TempPE
    │   │           └── Properties.Resources.Designer.cs.dll
    │   ├── OptionWindow.xaml
    │   ├── OptionWindow.xaml.cs
    │   ├── PageViewer.xaml
    │   ├── PageViewer.xaml.cs
    │   ├── Properties
    │   │   ├── app.manifest
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── Reader
    │   │   ├── Catalog
    │   │   │   ├── Catalog.cs
    │   │   │   ├── IBook.cs
    │   │   │   └── IBookItem.cs
    │   │   ├── Common
    │   │   │   ├── BaseBook.cs
    │   │   │   ├── Converters.cs
    │   │   │   └── SearchFilter.cs
    │   │   ├── DebugWindow.xaml
    │   │   ├── DebugWindow.xaml.cs
    │   │   ├── ExceptionManagement.cs
    │   │   ├── GridSplitterExpander.cs
    │   │   ├── Images
    │   │   │   ├── ImageCache.cs
    │   │   │   └── StreamToImage.cs
    │   │   └── RAR
    │   │       ├── RarBook.cs
    │   │       └── RarPage.cs
    │   └── Resources
    │       ├── acroread.png
    │       ├── book.ico
    │       ├── document.png
    │       ├── ecran.png
    │       ├── exit.png
    │       ├── FitHeight.png
    │       ├── FitWidth.png
    │       ├── GridSplitterExpander.xaml
    │       ├── info.png
    │       ├── open_folder.png
    │       ├── refresh.png
    │       ├── Search.png
    │       ├── Shared.xaml
    │       ├── Theme
    │       │   └── ExpressionDark.xaml
    │       ├── TheRedPushPin.png
    │       ├── tools.png
    │       └── Windows.xaml
    └── Chp9
        └── WPFBreadCrumbSystem
            ├── BreadCrumbControl
            │   ├── bin
            │   │   ├── Debug
            │   │   │   ├── BreadCrumbControl.dll
            │   │   │   ├── BreadCrumbControl.pdb
            │   │   │   └── Transitionals.dll
            │   │   └── Release
            │   ├── BreadCrumb
            │   │   ├── BreadCrumbViewManager.xaml
            │   │   ├── BreadCrumbViewManager.xaml.cs
            │   │   ├── CrumbToImageSourceConverter.cs
            │   │   ├── FrictionScrollViewer.cs
            │   │   ├── IBreadCrumbView.cs
            │   │   ├── ObservableDictionary.cs
            │   │   ├── PopupBehaviours.cs
            │   │   └── WrappedIBreadCrumbView.cs
            │   ├── BreadCrumbControl.csproj
            │   ├── BreadCrumbControl.csproj.user
            │   ├── Images
            │   │   ├── close.png
            │   │   ├── grow.png
            │   │   ├── move.png
            │   │   ├── rotate.png
            │   │   ├── trash.png
            │   │   └── view.png
            │   ├── Lib
            │   │   └── Transitionals.dll
            │   ├── obj
            │   │   └── Debug
            │   │       ├── BreadCrumb
            │   │       │   ├── BreadCrumbViewManager.baml
            │   │       │   └── BreadCrumbViewManager.g.cs
            │   │       ├── BreadCrumbControl.csproj.FileListAbsolute.txt
            │   │       ├── BreadCrumbControl.dll
            │   │       ├── BreadCrumbControl.g.resources
            │   │       ├── BreadCrumbControl_MarkupCompile.cache
            │   │       ├── BreadCrumbControl_MarkupCompile.lref
            │   │       ├── BreadCrumbControl.pdb
            │   │       ├── BreadCrumbControl.Properties.Resources.resources
            │   │       ├── DesignTimeResolveAssemblyReferences.cache
            │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
            │   │       ├── GeneratedInternalTypeHelper.g.cs
            │   │       ├── GenerateResource-ResGen.read.1.tlog
            │   │       ├── GenerateResource-ResGen.write.1.tlog
            │   │       ├── Refactor
            │   │       ├── ResolveAssemblyReference.cache
            │   │       ├── Resources
            │   │       │   └── AppStyles.baml
            │   │       └── TempPE
            │   │           └── Properties.Resources.Designer.cs.dll
            │   ├── Properties
            │   │   ├── AssemblyInfo.cs
            │   │   ├── Resources.Designer.cs
            │   │   ├── Resources.resx
            │   │   ├── Settings.Designer.cs
            │   │   └── Settings.settings
            │   ├── Resources
            │   │   ├── AppStyles.xaml
            │   │   └── obj
            │   │       └── Debug
            │   │           ├── BreadCrumb
            │   │           │   └── Views
            │   │           ├── Refactor
            │   │           ├── Resources
            │   │           └── TempPE
            │   └── TODO.txt
            ├── WPFBreadCrumbSystem
            │   ├── App.xaml
            │   ├── App.xaml.cs
            │   ├── bin
            │   │   ├── Debug
            │   │   │   ├── BreadCrumbControl.dll
            │   │   │   ├── BreadCrumbControl.pdb
            │   │   │   ├── Thriple.dll
            │   │   │   ├── Transitionals.dll
            │   │   │   ├── WPFBreadCrumbSystem.exe
            │   │   │   ├── WPFBreadCrumbSystem.pdb
            │   │   │   ├── WPFBreadCrumbSystem.vshost.exe
            │   │   │   └── WPFBreadCrumbSystem.vshost.exe.manifest
            │   │   └── Release
            │   ├── DummyViews
            │   │   ├── ImageControlDataHolder.cs
            │   │   ├── ImageControl.xaml
            │   │   ├── ImageControl.xaml.cs
            │   │   ├── MusicControlDataHolder.cs
            │   │   ├── MusicControl.xaml
            │   │   └── MusicControl.xaml.cs
            │   ├── Images
            │   │   ├── DummyMusicAlbums
            │   │   │   ├── HoorayForBoobies.JPG
            │   │   │   ├── mutter.JPG
            │   │   │   ├── SmellsLikeSmallChildren.JPG
            │   │   │   └── UseYourFingers.JPG
            │   │   ├── music.png
            │   │   ├── pictures.png
            │   │   ├── plus.png
            │   │   └── TEMP_Music.png
            │   ├── Lib
            │   │   └── Thriple.dll
            │   ├── obj
            │   │   └── Debug
            │   │       ├── App.baml
            │   │       ├── App.g.cs
            │   │       ├── BreadCrumb
            │   │       ├── BreadCrumb Items
            │   │       ├── DesignTimeResolveAssemblyReferences.cache
            │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
            │   │       ├── DummyViews
            │   │       │   ├── ImageControl.baml
            │   │       │   ├── ImageControl.g.cs
            │   │       │   ├── MusicControl.baml
            │   │       │   └── MusicControl.g.cs
            │   │       ├── Example BreadCrumb Items
            │   │       ├── GeneratedInternalTypeHelper.g.cs
            │   │       ├── GenerateResource-ResGen.read.1.tlog
            │   │       ├── GenerateResource-ResGen.write.1.tlog
            │   │       ├── Mock Views
            │   │       ├── MockViews
            │   │       ├── Refactor
            │   │       ├── ResolveAssemblyReference.cache
            │   │       ├── Resources
            │   │       │   └── DemoWindowStyles.baml
            │   │       ├── TempPE
            │   │       │   └── Properties.Resources.Designer.cs.dll
            │   │       ├── Views
            │   │       ├── Window1.baml
            │   │       ├── Window1.g.cs
            │   │       ├── WPFBreadCrumbSystem_Content.g.cs
            │   │       ├── WPFBreadCrumbSystem.csproj.FileListAbsolute.txt
            │   │       ├── WPFBreadCrumbSystem.exe
            │   │       ├── WPFBreadCrumbSystem.g.resources
            │   │       ├── WPFBreadCrumbSystem_MarkupCompile.cache
            │   │       ├── WPFBreadCrumbSystem_MarkupCompile.lref
            │   │       ├── WPFBreadCrumbSystem.pdb
            │   │       └── WPFBreadCrumbSystem.Properties.Resources.resources
            │   ├── Properties
            │   │   ├── AssemblyInfo.cs
            │   │   ├── Resources.Designer.cs
            │   │   ├── Resources.resx
            │   │   ├── Settings.Designer.cs
            │   │   └── Settings.settings
            │   ├── Resources
            │   │   └── DemoWindowStyles.xaml
            │   ├── ValueConverters
            │   │   └── IndexToVisibilityConverter.cs
            │   ├── Window1.xaml
            │   ├── Window1.xaml.cs
            │   ├── WPFBreadCrumbSystem.csproj
            │   └── WPFBreadCrumbSystem.csproj.user
            ├── WPFBreadCrumbSystemMVVM
            │   ├── App.xaml
            │   ├── App.xaml.cs
            │   ├── bin
            │   │   ├── Debug
            │   │   │   ├── BreadCrumbControl.dll
            │   │   │   ├── BreadCrumbControl.pdb
            │   │   │   ├── Cinch.dll
            │   │   │   ├── log4net.dll
            │   │   │   ├── Microsoft.Practices.ObjectBuilder2.dll
            │   │   │   ├── Microsoft.Practices.Unity.Configuration.dll
            │   │   │   ├── Microsoft.Practices.Unity.dll
            │   │   │   ├── SLF.dll
            │   │   │   ├── SLF.Log4netFacade.dll
            │   │   │   ├── Thriple.dll
            │   │   │   ├── Transitionals.dll
            │   │   │   ├── WPFBreadCrumbSystem.exe
            │   │   │   ├── WPFBreadCrumbSystemMVVM.exe
            │   │   │   ├── WPFBreadCrumbSystemMVVM.pdb
            │   │   │   ├── WPFBreadCrumbSystemMVVM.vshost.exe
            │   │   │   ├── WPFBreadCrumbSystemMVVM.vshost.exe.manifest
            │   │   │   └── WPFBreadCrumbSystem.vshost.exe.manifest
            │   │   └── Release
            │   ├── ClassDiagram1.cd
            │   ├── DummyViews
            │   │   ├── ImageControlDataHolder.cs
            │   │   ├── ImageControl.xaml
            │   │   ├── ImageControl.xaml.cs
            │   │   ├── MusicControlDataHolder.cs
            │   │   ├── MusicControl.xaml
            │   │   └── MusicControl.xaml.cs
            │   ├── Images
            │   │   ├── DummyMusicAlbums
            │   │   │   ├── HoorayForBoobies.JPG
            │   │   │   ├── mutter.JPG
            │   │   │   ├── SmellsLikeSmallChildren.JPG
            │   │   │   └── UseYourFingers.JPG
            │   │   ├── music.png
            │   │   ├── pictures.png
            │   │   ├── plus.png
            │   │   └── TEMP_Music.png
            │   ├── Lib
            │   │   ├── Cinch.dll
            │   │   ├── log4net.dll
            │   │   ├── Microsoft.Practices.ObjectBuilder2.dll
            │   │   ├── Microsoft.Practices.Unity.Configuration.dll
            │   │   ├── Microsoft.Practices.Unity.dll
            │   │   ├── SLF.dll
            │   │   ├── SLF.Log4netFacade.dll
            │   │   └── Thriple.dll
            │   ├── obj
            │   │   └── Debug
            │   │       ├── App.baml
            │   │       ├── App.g.cs
            │   │       ├── BreadCrumb
            │   │       ├── BreadCrumb Items
            │   │       ├── DesignTimeResolveAssemblyReferences.cache
            │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
            │   │       ├── DummyViews
            │   │       │   ├── ImageControl.baml
            │   │       │   ├── ImageControl.g.cs
            │   │       │   ├── MusicControl.baml
            │   │       │   └── MusicControl.g.cs
            │   │       ├── Example BreadCrumb Items
            │   │       ├── GeneratedInternalTypeHelper.g.cs
            │   │       ├── GenerateResource-ResGen.read.1.tlog
            │   │       ├── GenerateResource-ResGen.write.1.tlog
            │   │       ├── Mock Views
            │   │       ├── MockViews
            │   │       ├── Refactor
            │   │       ├── ResolveAssemblyReference.cache
            │   │       ├── Resources
            │   │       │   └── DemoWindowStyles.baml
            │   │       ├── TempPE
            │   │       │   └── Properties.Resources.Designer.cs.dll
            │   │       ├── Views
            │   │       ├── Window1.baml
            │   │       ├── Window1.g.cs
            │   │       ├── WPFBreadCrumbSystemMVVM_Content.g.cs
            │   │       ├── WPFBreadCrumbSystemMVVM.csproj.FileListAbsolute.txt
            │   │       ├── WPFBreadCrumbSystemMVVM.exe
            │   │       ├── WPFBreadCrumbSystemMVVM.g.resources
            │   │       ├── WPFBreadCrumbSystemMVVM_MarkupCompile.cache
            │   │       ├── WPFBreadCrumbSystemMVVM_MarkupCompile.lref
            │   │       ├── WPFBreadCrumbSystemMVVM.pdb
            │   │       └── WPFBreadCrumbSystemMVVM.Properties.Resources.resources
            │   ├── Properties
            │   │   ├── AssemblyInfo.cs
            │   │   ├── Resources.Designer.cs
            │   │   ├── Resources.resx
            │   │   ├── Settings.Designer.cs
            │   │   └── Settings.settings
            │   ├── Resources
            │   │   └── DemoWindowStyles.xaml
            │   ├── ValueConverters
            │   │   └── IndexToVisibilityConverter.cs
            │   ├── ViewModels
            │   │   ├── Services
            │   │   │   ├── Implementation
            │   │   │   │   └── BreadCrumbManagerService.cs
            │   │   │   └── Interfaces
            │   │   │       └── IBreadCrumbManagerService.cs
            │   │   └── Window1ViewModel.cs
            │   ├── Window1.xaml
            │   ├── Window1.xaml.cs
            │   ├── WPFBreadCrumbSystemMVVM.csproj
            │   └── WPFBreadCrumbSystemMVVM.csproj.user
            ├── WPFBreadCrumbSystem.sln
            └── WPFBreadCrumbSystem.suo

1102 directories, 3043 files

实例下载地址

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警