├── .gitignore ├── LICENSE ├── README.md ├── WPF-Samples ├── MVVM-TimLiu │ ├── CrazyElephant │ │ ├── .vs │ │ │ └── CrazyElephant │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── CrazyElephant.Client │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── CrazyElephant.Client.csproj │ │ │ ├── Data │ │ │ │ └── Data.xml │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Models │ │ │ │ ├── Dish.cs │ │ │ │ └── Restaurant.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── Services │ │ │ │ ├── IDataService.cs │ │ │ │ ├── IOrderService.cs │ │ │ │ ├── MockOrderService.cs │ │ │ │ └── XmlDataService.cs │ │ │ ├── ViewModels │ │ │ │ ├── DishMenuItemViewModel.cs │ │ │ │ └── MainWindowViewModel.cs │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ ├── CrazyElephant.Client.exe │ │ │ │ │ ├── CrazyElephant.Client.pdb │ │ │ │ │ ├── CrazyElephant.Client.vshost.exe │ │ │ │ │ ├── CrazyElephant.Client.vshost.exe.manifest │ │ │ │ │ ├── Data │ │ │ │ │ └── Data.xml │ │ │ │ │ └── Microsoft.Practices.Prism.dll │ │ │ └── obj │ │ │ │ └── x86 │ │ │ │ └── Debug │ │ │ │ ├── App.g.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── CrazyElephant.Client.Properties.Resources.resources │ │ │ │ ├── CrazyElephant.Client.csproj.CopyComplete │ │ │ │ ├── CrazyElephant.Client.csproj.CoreCompileInputs.cache │ │ │ │ ├── CrazyElephant.Client.csproj.FileListAbsolute.txt │ │ │ │ ├── CrazyElephant.Client.csproj.GenerateResource.cache │ │ │ │ ├── CrazyElephant.Client.csprojAssemblyReference.cache │ │ │ │ ├── CrazyElephant.Client.exe │ │ │ │ ├── CrazyElephant.Client.g.resources │ │ │ │ ├── CrazyElephant.Client.pdb │ │ │ │ ├── CrazyElephant.Client_Content.g.cs │ │ │ │ ├── CrazyElephant.Client_Content.g.i.cs │ │ │ │ ├── CrazyElephant.Client_MarkupCompile.cache │ │ │ │ ├── CrazyElephant.Client_MarkupCompile.i.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── MainWindow.baml │ │ │ │ ├── MainWindow.g.cs │ │ │ │ ├── MainWindow.g.i.cs │ │ │ │ └── TempPE │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── CrazyElephant.sln │ │ ├── CrazyElephant.sln.docstates.suo │ │ └── CrazyElephant.suo │ ├── SimpleMvvmDemo │ │ ├── .vs │ │ │ └── SimpleMvvmDemo │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── NewUI.txt │ │ ├── OldUI.txt │ │ ├── SimpleMvvmDemo.Client │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Commands │ │ │ │ └── DelegateCommand.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── SimpleMvvmDemo.Client.csproj │ │ │ ├── ViewModels │ │ │ │ ├── MainWindowViewModel.cs │ │ │ │ └── NotificationObject.cs │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ ├── SimpleMvvmDemo.Client.exe │ │ │ │ │ ├── SimpleMvvmDemo.Client.pdb │ │ │ │ │ ├── SimpleMvvmDemo.Client.vshost.exe │ │ │ │ │ └── SimpleMvvmDemo.Client.vshost.exe.manifest │ │ │ └── obj │ │ │ │ └── x86 │ │ │ │ └── Debug │ │ │ │ ├── App.g.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── MainWindow.baml │ │ │ │ ├── MainWindow.g.cs │ │ │ │ ├── MainWindow.g.i.cs │ │ │ │ ├── SimpleMvvmDemo.Client.Properties.Resources.resources │ │ │ │ ├── SimpleMvvmDemo.Client.csproj.CoreCompileInputs.cache │ │ │ │ ├── SimpleMvvmDemo.Client.csproj.FileListAbsolute.txt │ │ │ │ ├── SimpleMvvmDemo.Client.csproj.GenerateResource.cache │ │ │ │ ├── SimpleMvvmDemo.Client.csprojAssemblyReference.cache │ │ │ │ ├── SimpleMvvmDemo.Client.exe │ │ │ │ ├── SimpleMvvmDemo.Client.g.resources │ │ │ │ ├── SimpleMvvmDemo.Client.pdb │ │ │ │ ├── SimpleMvvmDemo.Client_MarkupCompile.cache │ │ │ │ ├── SimpleMvvmDemo.Client_MarkupCompile.i.cache │ │ │ │ └── TempPE │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── SimpleMvvmDemo.sln │ │ ├── SimpleMvvmDemo.sln.docstates.suo │ │ └── SimpleMvvmDemo.suo │ └── screenshots │ │ ├── MVVM-Add.png │ │ └── OrderSystem.png └── README.md ├── courseware ├── README.md └── 深入浅出UWP-slides │ ├── 深入浅出UWP-slides01.pdf │ ├── 深入浅出UWP-slides02.pdf │ ├── 深入浅出UWP-slides03.pdf │ ├── 深入浅出UWP-slides04.pdf │ ├── 深入浅出UWP-slides05.pdf │ └── 深入浅出UWP-slides06.pdf └── videos └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/README.md -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/.vs/CrazyElephant/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/.vs/CrazyElephant/v16/.suo -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/App.xaml -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/App.xaml.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/CrazyElephant.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/CrazyElephant.Client.csproj -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Data/Data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Data/Data.xml -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/MainWindow.xaml -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Models/Dish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Models/Dish.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Models/Restaurant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Models/Restaurant.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Services/IDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Services/IDataService.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Services/IOrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Services/IOrderService.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Services/MockOrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Services/MockOrderService.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Services/XmlDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/Services/XmlDataService.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/ViewModels/DishMenuItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/ViewModels/DishMenuItemViewModel.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/bin/Debug/CrazyElephant.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/bin/Debug/CrazyElephant.Client.exe -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/bin/Debug/CrazyElephant.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/bin/Debug/CrazyElephant.Client.pdb -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/bin/Debug/CrazyElephant.Client.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/bin/Debug/CrazyElephant.Client.vshost.exe -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/bin/Debug/CrazyElephant.Client.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/bin/Debug/CrazyElephant.Client.vshost.exe.manifest -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/bin/Debug/Data/Data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/bin/Debug/Data/Data.xml -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/bin/Debug/Microsoft.Practices.Prism.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/bin/Debug/Microsoft.Practices.Prism.dll -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/App.g.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/App.g.i.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client.Properties.Resources.resources -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0174a936add57f29cd152f8cf3224a2d06faf580 2 | -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client.exe -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client.g.resources -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client.pdb -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client_Content.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client_Content.g.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client_Content.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client_Content.g.i.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client_MarkupCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client_MarkupCompile.cache -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/CrazyElephant.Client_MarkupCompile.i.cache -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/MainWindow.baml -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/MainWindow.g.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/MainWindow.g.i.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.Client/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.sln -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.sln.docstates.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.sln.docstates.suo -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/CrazyElephant/CrazyElephant.suo -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/.vs/SimpleMvvmDemo/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/.vs/SimpleMvvmDemo/v16/.suo -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/NewUI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/NewUI.txt -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/OldUI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/OldUI.txt -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/App.xaml -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/App.xaml.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/Commands/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/Commands/DelegateCommand.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/MainWindow.xaml -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/SimpleMvvmDemo.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/SimpleMvvmDemo.Client.csproj -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/ViewModels/NotificationObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/ViewModels/NotificationObject.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/bin/Debug/SimpleMvvmDemo.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/bin/Debug/SimpleMvvmDemo.Client.exe -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/bin/Debug/SimpleMvvmDemo.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/bin/Debug/SimpleMvvmDemo.Client.pdb -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/bin/Debug/SimpleMvvmDemo.Client.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/bin/Debug/SimpleMvvmDemo.Client.vshost.exe -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/bin/Debug/SimpleMvvmDemo.Client.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/bin/Debug/SimpleMvvmDemo.Client.vshost.exe.manifest -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/App.g.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/App.g.i.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/MainWindow.baml -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/MainWindow.g.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/MainWindow.g.i.cs -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client.Properties.Resources.resources -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client.exe -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client.g.resources -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client.pdb -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client_MarkupCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client_MarkupCompile.cache -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/SimpleMvvmDemo.Client_MarkupCompile.i.cache -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.Client/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.sln -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.sln.docstates.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.sln.docstates.suo -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/SimpleMvvmDemo/SimpleMvvmDemo.suo -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/screenshots/MVVM-Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/screenshots/MVVM-Add.png -------------------------------------------------------------------------------- /WPF-Samples/MVVM-TimLiu/screenshots/OrderSystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/MVVM-TimLiu/screenshots/OrderSystem.png -------------------------------------------------------------------------------- /WPF-Samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/WPF-Samples/README.md -------------------------------------------------------------------------------- /courseware/README.md: -------------------------------------------------------------------------------- 1 | ## 课件 2 | Slides or PDFs 3 | 4 | 此处会依次列出相关WPF视频课程的课件,持续更新~ 5 | -------------------------------------------------------------------------------- /courseware/深入浅出UWP-slides/深入浅出UWP-slides01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/courseware/深入浅出UWP-slides/深入浅出UWP-slides01.pdf -------------------------------------------------------------------------------- /courseware/深入浅出UWP-slides/深入浅出UWP-slides02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/courseware/深入浅出UWP-slides/深入浅出UWP-slides02.pdf -------------------------------------------------------------------------------- /courseware/深入浅出UWP-slides/深入浅出UWP-slides03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/courseware/深入浅出UWP-slides/深入浅出UWP-slides03.pdf -------------------------------------------------------------------------------- /courseware/深入浅出UWP-slides/深入浅出UWP-slides04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/courseware/深入浅出UWP-slides/深入浅出UWP-slides04.pdf -------------------------------------------------------------------------------- /courseware/深入浅出UWP-slides/深入浅出UWP-slides05.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/courseware/深入浅出UWP-slides/深入浅出UWP-slides05.pdf -------------------------------------------------------------------------------- /courseware/深入浅出UWP-slides/深入浅出UWP-slides06.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/courseware/深入浅出UWP-slides/深入浅出UWP-slides06.pdf -------------------------------------------------------------------------------- /videos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanglr/wpf_in-depth_explanation/HEAD/videos/README.md --------------------------------------------------------------------------------