├── Part10 线程 ├── src │ ├── Juster.Common │ │ ├── BindableBase.cs │ │ ├── ColorConvert.cs │ │ ├── Juster.Common.csproj │ │ ├── Juster.Common.csproj.user │ │ ├── PropertySupport.cs │ │ ├── RelayCommand.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── Juster.Common.deps.json │ │ │ │ ├── Juster.Common.dll │ │ │ │ └── Juster.Common.pdb │ │ ├── imgs │ │ │ └── music.png │ │ └── obj │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── Juster.Common.AssemblyInfo.cs │ │ │ │ ├── Juster.Common.AssemblyInfoInputs.cache │ │ │ │ ├── Juster.Common.assets.cache │ │ │ │ ├── Juster.Common.csproj.CoreCompileInputs.cache │ │ │ │ ├── Juster.Common.csproj.FileListAbsolute.txt │ │ │ │ ├── Juster.Common.designer.deps.json │ │ │ │ ├── Juster.Common.designer.runtimeconfig.json │ │ │ │ ├── Juster.Common.dll │ │ │ │ ├── Juster.Common.g.resources │ │ │ │ ├── Juster.Common.pdb │ │ │ │ ├── Juster.Common_MarkupCompile.i.cache │ │ │ │ └── MainWindow.g.i.cs │ │ │ ├── Juster.Common.csproj.nuget.dgspec.json │ │ │ ├── Juster.Common.csproj.nuget.g.props │ │ │ ├── Juster.Common.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── Juster.DAL │ │ ├── DataService.cs │ │ ├── Juster.DAL.csproj │ │ ├── Juster.DAL.csproj.user │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── Juster.DAL.deps.json │ │ │ │ ├── Juster.DAL.dll │ │ │ │ └── Juster.DAL.pdb │ │ └── obj │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── Juster.DAL.AssemblyInfo.cs │ │ │ │ ├── Juster.DAL.AssemblyInfoInputs.cache │ │ │ │ ├── Juster.DAL.assets.cache │ │ │ │ ├── Juster.DAL.csproj.CoreCompileInputs.cache │ │ │ │ ├── Juster.DAL.csproj.FileListAbsolute.txt │ │ │ │ ├── Juster.DAL.csprojAssemblyReference.cache │ │ │ │ ├── Juster.DAL.designer.deps.json │ │ │ │ ├── Juster.DAL.designer.runtimeconfig.json │ │ │ │ ├── Juster.DAL.dll │ │ │ │ ├── Juster.DAL.pdb │ │ │ │ └── MainWindow.g.i.cs │ │ │ ├── Juster.DAL.csproj.nuget.dgspec.json │ │ │ ├── Juster.DAL.csproj.nuget.g.props │ │ │ ├── Juster.DAL.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── Juster.Music │ │ ├── .vs │ │ └── Juster.Music │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── Juster.Music.csproj │ │ ├── Juster.Music.csproj.user │ │ ├── Juster.Music.sln │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Models │ │ ├── LoginModel.cs │ │ ├── MainModel.cs │ │ ├── SongModel.cs │ │ └── SongSheetModel.cs │ │ ├── ViewModels │ │ ├── LoginViewModel.cs │ │ └── MainViewModel.cs │ │ ├── Views │ │ ├── LoginView.xaml │ │ └── LoginView.xaml.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── net5.0-windows │ │ │ ├── Juster.Common.dll │ │ │ ├── Juster.Common.pdb │ │ │ ├── Juster.DAL.dll │ │ │ ├── Juster.DAL.pdb │ │ │ ├── Juster.Music.deps.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.exe │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ │ ├── Juster.Music.runtimeconfig.json │ │ │ └── ref │ │ │ │ └── Juster.Music.dll │ │ │ └── netcoreapp3.1 │ │ │ ├── Juster.Music.deps.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.exe │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ │ └── Juster.Music.runtimeconfig.json │ │ └── obj │ │ ├── Debug │ │ ├── net5.0-windows │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Juster.Music.AssemblyInfo.cs │ │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ │ ├── Juster.Music.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Juster.Music.assets.cache │ │ │ ├── Juster.Music.csproj.CopyComplete │ │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ │ ├── Juster.Music.designer.deps.json │ │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.g.resources │ │ │ ├── Juster.Music.genruntimeconfig.cache │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music_MarkupCompile.cache │ │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ │ ├── Juster.Music_MarkupCompile.lref │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ ├── Views │ │ │ │ ├── LoginView.baml │ │ │ │ ├── LoginView.g.cs │ │ │ │ └── LoginView.g.i.cs │ │ │ ├── apphost.exe │ │ │ └── ref │ │ │ │ └── Juster.Music.dll │ │ └── netcoreapp3.1 │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Juster.Music.AssemblyInfo.cs │ │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ │ ├── Juster.Music.assets.cache │ │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ │ ├── Juster.Music.designer.deps.json │ │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.g.resources │ │ │ ├── Juster.Music.genruntimeconfig.cache │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music_MarkupCompile.cache │ │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ │ ├── Juster.Music_MarkupCompile.i.lref │ │ │ ├── Juster.Music_MarkupCompile.lref │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ └── apphost.exe │ │ ├── Juster.Music.csproj.nuget.dgspec.json │ │ ├── Juster.Music.csproj.nuget.g.props │ │ ├── Juster.Music.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache └── 线程.pptx ├── Part11 项目(完结) ├── src │ ├── Juster.Common │ │ ├── BindableBase.cs │ │ ├── ColorConvert.cs │ │ ├── Juster.Common.csproj │ │ ├── Juster.Common.csproj.user │ │ ├── PropertySupport.cs │ │ ├── RelayCommand.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ ├── net5.0-windows │ │ │ │ ├── Juster.Common.deps.json │ │ │ │ ├── Juster.Common.dll │ │ │ │ ├── Juster.Common.pdb │ │ │ │ └── ref │ │ │ │ │ └── Juster.Common.dll │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── Juster.Common.deps.json │ │ │ │ ├── Juster.Common.dll │ │ │ │ └── Juster.Common.pdb │ │ ├── imgs │ │ │ ├── befor.png │ │ │ ├── logo.png │ │ │ ├── music.png │ │ │ ├── next.png │ │ │ ├── play.png │ │ │ └── stop.png │ │ ├── mp3 │ │ │ ├── 周杰伦 - 稻香.mp3 │ │ │ ├── 蔡依林 - 日不落.mp3 │ │ │ └── 蔡依林 - 特务J.mp3 │ │ └── obj │ │ │ ├── Debug │ │ │ ├── net5.0-windows │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── Juster.Common.AssemblyInfo.cs │ │ │ │ ├── Juster.Common.AssemblyInfoInputs.cache │ │ │ │ ├── Juster.Common.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── Juster.Common.assets.cache │ │ │ │ ├── Juster.Common.csproj.CoreCompileInputs.cache │ │ │ │ ├── Juster.Common.csproj.FileListAbsolute.txt │ │ │ │ ├── Juster.Common.dll │ │ │ │ ├── Juster.Common.g.resources │ │ │ │ ├── Juster.Common.pdb │ │ │ │ └── ref │ │ │ │ │ └── Juster.Common.dll │ │ │ └── netcoreapp3.1 │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── Juster.Common.AssemblyInfo.cs │ │ │ │ ├── Juster.Common.AssemblyInfoInputs.cache │ │ │ │ ├── Juster.Common.assets.cache │ │ │ │ ├── Juster.Common.csproj.CoreCompileInputs.cache │ │ │ │ ├── Juster.Common.csproj.FileListAbsolute.txt │ │ │ │ ├── Juster.Common.csprojAssemblyReference.cache │ │ │ │ ├── Juster.Common.designer.deps.json │ │ │ │ ├── Juster.Common.designer.runtimeconfig.json │ │ │ │ ├── Juster.Common.dll │ │ │ │ ├── Juster.Common.g.resources │ │ │ │ ├── Juster.Common.pdb │ │ │ │ ├── Juster.Common_MarkupCompile.i.cache │ │ │ │ └── MainWindow.g.i.cs │ │ │ ├── Juster.Common.csproj.nuget.dgspec.json │ │ │ ├── Juster.Common.csproj.nuget.g.props │ │ │ ├── Juster.Common.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── Juster.DAL │ │ ├── DataService.cs │ │ ├── Juster.DAL.csproj │ │ ├── Juster.DAL.csproj.user │ │ ├── bin │ │ │ └── Debug │ │ │ │ ├── net5.0-windows │ │ │ │ ├── Juster.DAL.deps.json │ │ │ │ ├── Juster.DAL.dll │ │ │ │ ├── Juster.DAL.pdb │ │ │ │ └── ref │ │ │ │ │ └── Juster.DAL.dll │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── Juster.DAL.deps.json │ │ │ │ ├── Juster.DAL.dll │ │ │ │ └── Juster.DAL.pdb │ │ └── obj │ │ │ ├── Debug │ │ │ ├── net5.0-windows │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── Juster.DAL.AssemblyInfo.cs │ │ │ │ ├── Juster.DAL.AssemblyInfoInputs.cache │ │ │ │ ├── Juster.DAL.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── Juster.DAL.assets.cache │ │ │ │ ├── Juster.DAL.csproj.CoreCompileInputs.cache │ │ │ │ ├── Juster.DAL.csproj.FileListAbsolute.txt │ │ │ │ ├── Juster.DAL.dll │ │ │ │ ├── Juster.DAL.pdb │ │ │ │ └── ref │ │ │ │ │ └── Juster.DAL.dll │ │ │ └── netcoreapp3.1 │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── Juster.DAL.AssemblyInfo.cs │ │ │ │ ├── Juster.DAL.AssemblyInfoInputs.cache │ │ │ │ ├── Juster.DAL.assets.cache │ │ │ │ ├── Juster.DAL.csproj.CoreCompileInputs.cache │ │ │ │ ├── Juster.DAL.csproj.FileListAbsolute.txt │ │ │ │ ├── Juster.DAL.csprojAssemblyReference.cache │ │ │ │ ├── Juster.DAL.designer.deps.json │ │ │ │ ├── Juster.DAL.designer.runtimeconfig.json │ │ │ │ ├── Juster.DAL.dll │ │ │ │ ├── Juster.DAL.pdb │ │ │ │ └── MainWindow.g.i.cs │ │ │ ├── Juster.DAL.csproj.nuget.dgspec.json │ │ │ ├── Juster.DAL.csproj.nuget.g.props │ │ │ ├── Juster.DAL.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── Juster.Logger │ │ ├── Juster.Logger.csproj │ │ ├── Juster.Logger.csproj.user │ │ ├── NLog.config │ │ ├── NLog.xsd │ │ ├── NLogger.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── Juster.Logger.deps.json │ │ │ │ ├── Juster.Logger.dll │ │ │ │ ├── Juster.Logger.pdb │ │ │ │ ├── NLog.config │ │ │ │ └── ref │ │ │ │ └── Juster.Logger.dll │ │ └── obj │ │ │ ├── Debug │ │ │ ├── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── Juster.Logger.AssemblyInfo.cs │ │ │ │ ├── Juster.Logger.AssemblyInfoInputs.cache │ │ │ │ ├── Juster.Logger.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── Juster.Logger.assets.cache │ │ │ │ ├── Juster.Logger.csproj.CoreCompileInputs.cache │ │ │ │ ├── Juster.Logger.csproj.FileListAbsolute.txt │ │ │ │ ├── Juster.Logger.csprojAssemblyReference.cache │ │ │ │ ├── Juster.Logger.dll │ │ │ │ ├── Juster.Logger.pdb │ │ │ │ └── ref │ │ │ │ │ └── Juster.Logger.dll │ │ │ └── netcoreapp3.1 │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ ├── Juster.Logger.AssemblyInfo.cs │ │ │ │ ├── Juster.Logger.AssemblyInfoInputs.cache │ │ │ │ ├── Juster.Logger.assets.cache │ │ │ │ └── Juster.Logger.csprojAssemblyReference.cache │ │ │ ├── Juster.Logger.csproj.nuget.dgspec.json │ │ │ ├── Juster.Logger.csproj.nuget.g.props │ │ │ ├── Juster.Logger.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── Juster.Music │ │ ├── .vs │ │ └── Juster.Music │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── Juster.Music.csproj │ │ ├── Juster.Music.csproj.user │ │ ├── Juster.Music.sln │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Models │ │ ├── LoginModel.cs │ │ ├── MainModel.cs │ │ ├── SongModel.cs │ │ └── SongSheetModel.cs │ │ ├── ViewModels │ │ ├── LoginViewModel.cs │ │ └── MainViewModel.cs │ │ ├── Views │ │ ├── LoginView.xaml │ │ └── LoginView.xaml.cs │ │ ├── bin │ │ └── Debug │ │ │ └── net5.0-windows │ │ │ ├── Juster.Common.dll │ │ │ ├── Juster.Common.pdb │ │ │ ├── Juster.DAL.dll │ │ │ ├── Juster.DAL.pdb │ │ │ ├── Juster.Logger.dll │ │ │ ├── Juster.Logger.pdb │ │ │ ├── Juster.Music.deps.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.exe │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ │ ├── Juster.Music.runtimeconfig.json │ │ │ ├── NLog.Extensions.Logging.dll │ │ │ ├── NLog.Web.AspNetCore.dll │ │ │ ├── NLog.config │ │ │ ├── NLog.dll │ │ │ └── ref │ │ │ └── Juster.Music.dll │ │ └── obj │ │ ├── Debug │ │ ├── net5.0-windows │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Juster.Music.AssemblyInfo.cs │ │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ │ ├── Juster.Music.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Juster.Music.assets.cache │ │ │ ├── Juster.Music.csproj.CopyComplete │ │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ │ ├── Juster.Music.designer.deps.json │ │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.g.resources │ │ │ ├── Juster.Music.genruntimeconfig.cache │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music_MarkupCompile.cache │ │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ │ ├── Juster.Music_MarkupCompile.lref │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ ├── Views │ │ │ │ ├── LoginView.baml │ │ │ │ ├── LoginView.g.cs │ │ │ │ └── LoginView.g.i.cs │ │ │ ├── apphost.exe │ │ │ └── ref │ │ │ │ └── Juster.Music.dll │ │ └── netcoreapp3.1 │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Juster.Music.AssemblyInfo.cs │ │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ │ ├── Juster.Music.assets.cache │ │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ │ ├── Juster.Music.designer.deps.json │ │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.g.resources │ │ │ ├── Juster.Music.genruntimeconfig.cache │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music_MarkupCompile.cache │ │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ │ ├── Juster.Music_MarkupCompile.i.lref │ │ │ ├── Juster.Music_MarkupCompile.lref │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ └── apphost.exe │ │ ├── Juster.Music.csproj.nuget.dgspec.json │ │ ├── Juster.Music.csproj.nuget.g.props │ │ ├── Juster.Music.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache └── 项目.pptx ├── Part1初识WPF ├── Juster.Music │ ├── .vs │ │ └── Juster.Music │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Juster.Music.csproj │ ├── Juster.Music.csproj.user │ ├── Juster.Music.sln │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Juster.Music.deps.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.exe │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ │ └── Juster.Music.runtimeconfig.json │ └── obj │ │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Juster.Music.AssemblyInfo.cs │ │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ │ ├── Juster.Music.assets.cache │ │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ │ ├── Juster.Music.designer.deps.json │ │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.g.resources │ │ │ ├── Juster.Music.genruntimeconfig.cache │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music_MarkupCompile.cache │ │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ │ ├── Juster.Music_MarkupCompile.lref │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ └── apphost.exe │ │ ├── Juster.Music.csproj.nuget.dgspec.json │ │ ├── Juster.Music.csproj.nuget.g.props │ │ ├── Juster.Music.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache └── 初识WPF.pptx ├── Part2布局 ├── Juster.Music │ ├── .vs │ │ └── Juster.Music │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Juster.Music.csproj │ ├── Juster.Music.csproj.user │ ├── Juster.Music.sln │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Juster.Music.deps.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.exe │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ │ └── Juster.Music.runtimeconfig.json │ └── obj │ │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Juster.Music.AssemblyInfo.cs │ │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ │ ├── Juster.Music.assets.cache │ │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ │ ├── Juster.Music.designer.deps.json │ │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.g.resources │ │ │ ├── Juster.Music.genruntimeconfig.cache │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music_MarkupCompile.cache │ │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ │ ├── Juster.Music_MarkupCompile.i.lref │ │ │ ├── Juster.Music_MarkupCompile.lref │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ └── apphost.exe │ │ ├── Juster.Music.csproj.nuget.dgspec.json │ │ ├── Juster.Music.csproj.nuget.g.props │ │ ├── Juster.Music.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache └── XAML布局.pptx ├── Part3控件、依赖项属性 ├── Juster.Music │ ├── .vs │ │ └── Juster.Music │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Juster.Music.csproj │ ├── Juster.Music.csproj.user │ ├── Juster.Music.sln │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Juster.Music.deps.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.exe │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ │ └── Juster.Music.runtimeconfig.json │ └── obj │ │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Juster.Music.AssemblyInfo.cs │ │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ │ ├── Juster.Music.assets.cache │ │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ │ ├── Juster.Music.designer.deps.json │ │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.g.resources │ │ │ ├── Juster.Music.genruntimeconfig.cache │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music_MarkupCompile.cache │ │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ │ ├── Juster.Music_MarkupCompile.i.lref │ │ │ ├── Juster.Music_MarkupCompile.lref │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ └── apphost.exe │ │ ├── Juster.Music.csproj.nuget.dgspec.json │ │ ├── Juster.Music.csproj.nuget.g.props │ │ ├── Juster.Music.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache └── Part3控件、依赖项属性.pptx ├── Part4绑定 ├── src │ ├── Juster.Common │ │ ├── BindableBase.cs │ │ ├── Juster.Common.csproj │ │ ├── PropertySupport.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── Juster.Common.deps.json │ │ │ │ ├── Juster.Common.dll │ │ │ │ ├── Juster.Common.pdb │ │ │ │ └── ref │ │ │ │ └── Juster.Common.dll │ │ └── obj │ │ │ ├── Debug │ │ │ ├── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── Juster.Common.AssemblyInfo.cs │ │ │ │ ├── Juster.Common.AssemblyInfoInputs.cache │ │ │ │ ├── Juster.Common.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── Juster.Common.assets.cache │ │ │ │ ├── Juster.Common.csproj.CoreCompileInputs.cache │ │ │ │ ├── Juster.Common.csproj.FileListAbsolute.txt │ │ │ │ ├── Juster.Common.csprojAssemblyReference.cache │ │ │ │ ├── Juster.Common.dll │ │ │ │ ├── Juster.Common.pdb │ │ │ │ └── ref │ │ │ │ │ └── Juster.Common.dll │ │ │ └── netcoreapp3.1 │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ ├── Juster.Common.AssemblyInfo.cs │ │ │ │ ├── Juster.Common.AssemblyInfoInputs.cache │ │ │ │ ├── Juster.Common.assets.cache │ │ │ │ └── Juster.Common.csprojAssemblyReference.cache │ │ │ ├── Juster.Common.csproj.nuget.dgspec.json │ │ │ ├── Juster.Common.csproj.nuget.g.props │ │ │ ├── Juster.Common.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── Juster.Music │ │ ├── .vs │ │ └── Juster.Music │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── Class1.cs │ │ ├── Juster.Music.csproj │ │ ├── Juster.Music.csproj.user │ │ ├── Juster.Music.sln │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── TempModel.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── net5.0-windows │ │ │ ├── Juster.Common.dll │ │ │ ├── Juster.Common.pdb │ │ │ ├── Juster.Music.deps.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.exe │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ │ ├── Juster.Music.runtimeconfig.json │ │ │ └── ref │ │ │ │ └── Juster.Music.dll │ │ │ └── netcoreapp3.1 │ │ │ ├── Juster.Music.deps.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.exe │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ │ └── Juster.Music.runtimeconfig.json │ │ └── obj │ │ ├── Debug │ │ ├── net5.0-windows │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Juster.Music.AssemblyInfo.cs │ │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ │ ├── Juster.Music.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Juster.Music.assets.cache │ │ │ ├── Juster.Music.csproj.CopyComplete │ │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ │ ├── Juster.Music.designer.deps.json │ │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.g.resources │ │ │ ├── Juster.Music.genruntimeconfig.cache │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music_MarkupCompile.cache │ │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ │ ├── Juster.Music_MarkupCompile.i.lref │ │ │ ├── Juster.Music_MarkupCompile.lref │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ ├── apphost.exe │ │ │ └── ref │ │ │ │ └── Juster.Music.dll │ │ └── netcoreapp3.1 │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Juster.Music.AssemblyInfo.cs │ │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ │ ├── Juster.Music.assets.cache │ │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ │ ├── Juster.Music.designer.deps.json │ │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.g.resources │ │ │ ├── Juster.Music.genruntimeconfig.cache │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music_MarkupCompile.cache │ │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ │ ├── Juster.Music_MarkupCompile.i.lref │ │ │ ├── Juster.Music_MarkupCompile.lref │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ └── apphost.exe │ │ ├── Juster.Music.csproj.nuget.dgspec.json │ │ ├── Juster.Music.csproj.nuget.g.props │ │ ├── Juster.Music.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache └── 绑定.pptx ├── Part5命令 ├── src │ ├── Juster.Common │ │ ├── BindableBase.cs │ │ ├── Juster.Common.csproj │ │ ├── Juster.Common.csproj.user │ │ ├── PropertySupport.cs │ │ ├── RelayCommand.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── Juster.Common.deps.json │ │ │ │ ├── Juster.Common.dll │ │ │ │ └── Juster.Common.pdb │ │ └── obj │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── Juster.Common.AssemblyInfo.cs │ │ │ │ ├── Juster.Common.AssemblyInfoInputs.cache │ │ │ │ ├── Juster.Common.assets.cache │ │ │ │ ├── Juster.Common.csproj.CoreCompileInputs.cache │ │ │ │ ├── Juster.Common.csproj.FileListAbsolute.txt │ │ │ │ ├── Juster.Common.csprojAssemblyReference.cache │ │ │ │ ├── Juster.Common.designer.deps.json │ │ │ │ ├── Juster.Common.designer.runtimeconfig.json │ │ │ │ ├── Juster.Common.dll │ │ │ │ ├── Juster.Common.pdb │ │ │ │ ├── Juster.Common_MarkupCompile.i.cache │ │ │ │ └── MainWindow.g.i.cs │ │ │ ├── Juster.Common.csproj.nuget.dgspec.json │ │ │ ├── Juster.Common.csproj.nuget.g.props │ │ │ ├── Juster.Common.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── Juster.Music │ │ ├── .vs │ │ └── Juster.Music │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── Juster.Music.csproj │ │ ├── Juster.Music.csproj.user │ │ ├── Juster.Music.sln │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── TempModel.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── net5.0-windows │ │ │ ├── Juster.Common.dll │ │ │ ├── Juster.Common.pdb │ │ │ ├── Juster.Music.deps.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.exe │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ │ ├── Juster.Music.runtimeconfig.json │ │ │ └── ref │ │ │ │ └── Juster.Music.dll │ │ │ └── netcoreapp3.1 │ │ │ ├── Juster.Music.deps.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.exe │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ │ └── Juster.Music.runtimeconfig.json │ │ └── obj │ │ ├── Debug │ │ ├── net5.0-windows │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Juster.Music.AssemblyInfo.cs │ │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ │ ├── Juster.Music.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Juster.Music.assets.cache │ │ │ ├── Juster.Music.csproj.CopyComplete │ │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ │ ├── Juster.Music.designer.deps.json │ │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.g.resources │ │ │ ├── Juster.Music.genruntimeconfig.cache │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music_MarkupCompile.cache │ │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ │ ├── Juster.Music_MarkupCompile.i.lref │ │ │ ├── Juster.Music_MarkupCompile.lref │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ ├── apphost.exe │ │ │ └── ref │ │ │ │ └── Juster.Music.dll │ │ └── netcoreapp3.1 │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Juster.Music.AssemblyInfo.cs │ │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ │ ├── Juster.Music.assets.cache │ │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ │ ├── Juster.Music.designer.deps.json │ │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.g.resources │ │ │ ├── Juster.Music.genruntimeconfig.cache │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music_MarkupCompile.cache │ │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ │ ├── Juster.Music_MarkupCompile.i.lref │ │ │ ├── Juster.Music_MarkupCompile.lref │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ └── apphost.exe │ │ ├── Juster.Music.csproj.nuget.dgspec.json │ │ ├── Juster.Music.csproj.nuget.g.props │ │ ├── Juster.Music.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache └── 命令.pptx ├── Part6MVVM ├── MVVM模式.pptx └── src │ ├── Juster.Common │ ├── BindableBase.cs │ ├── Juster.Common.csproj │ ├── Juster.Common.csproj.user │ ├── PropertySupport.cs │ ├── RelayCommand.cs │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Juster.Common.deps.json │ │ │ ├── Juster.Common.dll │ │ │ └── Juster.Common.pdb │ └── obj │ │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Juster.Common.AssemblyInfo.cs │ │ │ ├── Juster.Common.AssemblyInfoInputs.cache │ │ │ ├── Juster.Common.assets.cache │ │ │ ├── Juster.Common.csproj.CoreCompileInputs.cache │ │ │ ├── Juster.Common.csproj.FileListAbsolute.txt │ │ │ ├── Juster.Common.designer.deps.json │ │ │ ├── Juster.Common.designer.runtimeconfig.json │ │ │ ├── Juster.Common.dll │ │ │ ├── Juster.Common.pdb │ │ │ ├── Juster.Common_MarkupCompile.i.cache │ │ │ └── MainWindow.g.i.cs │ │ ├── Juster.Common.csproj.nuget.dgspec.json │ │ ├── Juster.Common.csproj.nuget.g.props │ │ ├── Juster.Common.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache │ └── Juster.Music │ ├── .vs │ └── Juster.Music │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Juster.Music.csproj │ ├── Juster.Music.csproj.user │ ├── Juster.Music.sln │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Models │ ├── LoginModel.cs │ └── MainModel.cs │ ├── ViewModels │ ├── LoginViewModel.cs │ └── MainViewModel.cs │ ├── Views │ ├── LoginView.xaml │ └── LoginView.xaml.cs │ ├── bin │ └── Debug │ │ ├── net5.0-windows │ │ ├── Juster.Common.dll │ │ ├── Juster.Common.pdb │ │ ├── Juster.Music.deps.json │ │ ├── Juster.Music.dll │ │ ├── Juster.Music.exe │ │ ├── Juster.Music.pdb │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ ├── Juster.Music.runtimeconfig.json │ │ └── ref │ │ │ └── Juster.Music.dll │ │ └── netcoreapp3.1 │ │ ├── Juster.Music.deps.json │ │ ├── Juster.Music.dll │ │ ├── Juster.Music.exe │ │ ├── Juster.Music.pdb │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ └── Juster.Music.runtimeconfig.json │ └── obj │ ├── Debug │ ├── net5.0-windows │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── Juster.Music.AssemblyInfo.cs │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ ├── Juster.Music.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Juster.Music.assets.cache │ │ ├── Juster.Music.csproj.CopyComplete │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ ├── Juster.Music.designer.deps.json │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ ├── Juster.Music.dll │ │ ├── Juster.Music.g.resources │ │ ├── Juster.Music.genruntimeconfig.cache │ │ ├── Juster.Music.pdb │ │ ├── Juster.Music_MarkupCompile.cache │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ ├── Juster.Music_MarkupCompile.i.lref │ │ ├── Juster.Music_MarkupCompile.lref │ │ ├── MainWindow.baml │ │ ├── MainWindow.g.cs │ │ ├── MainWindow.g.i.cs │ │ ├── Views │ │ │ ├── LoginView.baml │ │ │ ├── LoginView.g.cs │ │ │ └── LoginView.g.i.cs │ │ ├── apphost.exe │ │ └── ref │ │ │ └── Juster.Music.dll │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── Juster.Music.AssemblyInfo.cs │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ ├── Juster.Music.assets.cache │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ ├── Juster.Music.designer.deps.json │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ ├── Juster.Music.dll │ │ ├── Juster.Music.g.resources │ │ ├── Juster.Music.genruntimeconfig.cache │ │ ├── Juster.Music.pdb │ │ ├── Juster.Music_MarkupCompile.cache │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ ├── Juster.Music_MarkupCompile.i.lref │ │ ├── Juster.Music_MarkupCompile.lref │ │ ├── MainWindow.baml │ │ ├── MainWindow.g.cs │ │ ├── MainWindow.g.i.cs │ │ └── apphost.exe │ ├── Juster.Music.csproj.nuget.dgspec.json │ ├── Juster.Music.csproj.nuget.g.props │ ├── Juster.Music.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Part7资源、样式 ├── src │ ├── Juster.Common │ │ ├── BindableBase.cs │ │ ├── Juster.Common.csproj │ │ ├── Juster.Common.csproj.user │ │ ├── PropertySupport.cs │ │ ├── RelayCommand.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── Juster.Common.deps.json │ │ │ │ ├── Juster.Common.dll │ │ │ │ └── Juster.Common.pdb │ │ └── obj │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── Juster.Common.AssemblyInfo.cs │ │ │ │ ├── Juster.Common.AssemblyInfoInputs.cache │ │ │ │ ├── Juster.Common.assets.cache │ │ │ │ ├── Juster.Common.csproj.CoreCompileInputs.cache │ │ │ │ ├── Juster.Common.csproj.FileListAbsolute.txt │ │ │ │ ├── Juster.Common.csprojAssemblyReference.cache │ │ │ │ ├── Juster.Common.designer.deps.json │ │ │ │ ├── Juster.Common.designer.runtimeconfig.json │ │ │ │ ├── Juster.Common.dll │ │ │ │ ├── Juster.Common.pdb │ │ │ │ ├── Juster.Common_MarkupCompile.i.cache │ │ │ │ └── MainWindow.g.i.cs │ │ │ ├── Juster.Common.csproj.nuget.dgspec.json │ │ │ ├── Juster.Common.csproj.nuget.g.props │ │ │ ├── Juster.Common.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── Juster.Music │ │ ├── .vs │ │ └── Juster.Music │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── Juster.Music.csproj │ │ ├── Juster.Music.csproj.user │ │ ├── Juster.Music.sln │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Models │ │ ├── LoginModel.cs │ │ └── MainModel.cs │ │ ├── ViewModels │ │ ├── LoginViewModel.cs │ │ └── MainViewModel.cs │ │ ├── Views │ │ ├── LoginView.xaml │ │ └── LoginView.xaml.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── net5.0-windows │ │ │ ├── Juster.Common.dll │ │ │ ├── Juster.Common.pdb │ │ │ ├── Juster.Music.deps.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.exe │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ │ ├── Juster.Music.runtimeconfig.json │ │ │ └── ref │ │ │ │ └── Juster.Music.dll │ │ │ └── netcoreapp3.1 │ │ │ ├── Juster.Music.deps.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.exe │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ │ └── Juster.Music.runtimeconfig.json │ │ └── obj │ │ ├── Debug │ │ ├── net5.0-windows │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Juster.Music.AssemblyInfo.cs │ │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ │ ├── Juster.Music.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Juster.Music.assets.cache │ │ │ ├── Juster.Music.csproj.CopyComplete │ │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ │ ├── Juster.Music.designer.deps.json │ │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.g.resources │ │ │ ├── Juster.Music.genruntimeconfig.cache │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music_MarkupCompile.cache │ │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ │ ├── Juster.Music_MarkupCompile.i.lref │ │ │ ├── Juster.Music_MarkupCompile.lref │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ ├── Views │ │ │ │ ├── LoginView.baml │ │ │ │ ├── LoginView.g.cs │ │ │ │ └── LoginView.g.i.cs │ │ │ ├── apphost.exe │ │ │ └── ref │ │ │ │ └── Juster.Music.dll │ │ └── netcoreapp3.1 │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Juster.Music.AssemblyInfo.cs │ │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ │ ├── Juster.Music.assets.cache │ │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ │ ├── Juster.Music.designer.deps.json │ │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.g.resources │ │ │ ├── Juster.Music.genruntimeconfig.cache │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music_MarkupCompile.cache │ │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ │ ├── Juster.Music_MarkupCompile.i.lref │ │ │ ├── Juster.Music_MarkupCompile.lref │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ └── apphost.exe │ │ ├── Juster.Music.csproj.nuget.dgspec.json │ │ ├── Juster.Music.csproj.nuget.g.props │ │ ├── Juster.Music.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache └── 资源、样式.pptx ├── Part8 Convert ├── Convert.pptx └── src │ ├── Juster.Common │ ├── BindableBase.cs │ ├── ColorConvert.cs │ ├── Juster.Common.csproj │ ├── Juster.Common.csproj.user │ ├── PropertySupport.cs │ ├── RelayCommand.cs │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Juster.Common.deps.json │ │ │ ├── Juster.Common.dll │ │ │ └── Juster.Common.pdb │ └── obj │ │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Juster.Common.AssemblyInfo.cs │ │ │ ├── Juster.Common.AssemblyInfoInputs.cache │ │ │ ├── Juster.Common.assets.cache │ │ │ ├── Juster.Common.csproj.CoreCompileInputs.cache │ │ │ ├── Juster.Common.csproj.FileListAbsolute.txt │ │ │ ├── Juster.Common.csprojAssemblyReference.cache │ │ │ ├── Juster.Common.designer.deps.json │ │ │ ├── Juster.Common.designer.runtimeconfig.json │ │ │ ├── Juster.Common.dll │ │ │ ├── Juster.Common.pdb │ │ │ ├── Juster.Common_MarkupCompile.i.cache │ │ │ └── MainWindow.g.i.cs │ │ ├── Juster.Common.csproj.nuget.dgspec.json │ │ ├── Juster.Common.csproj.nuget.g.props │ │ ├── Juster.Common.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache │ └── Juster.Music │ ├── .vs │ └── Juster.Music │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Juster.Music.csproj │ ├── Juster.Music.csproj.user │ ├── Juster.Music.sln │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Models │ ├── LoginModel.cs │ └── MainModel.cs │ ├── ViewModels │ ├── LoginViewModel.cs │ └── MainViewModel.cs │ ├── Views │ ├── LoginView.xaml │ └── LoginView.xaml.cs │ ├── bin │ └── Debug │ │ ├── net5.0-windows │ │ ├── Juster.Common.dll │ │ ├── Juster.Common.pdb │ │ ├── Juster.Music.deps.json │ │ ├── Juster.Music.dll │ │ ├── Juster.Music.exe │ │ ├── Juster.Music.pdb │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ ├── Juster.Music.runtimeconfig.json │ │ └── ref │ │ │ └── Juster.Music.dll │ │ └── netcoreapp3.1 │ │ ├── Juster.Music.deps.json │ │ ├── Juster.Music.dll │ │ ├── Juster.Music.exe │ │ ├── Juster.Music.pdb │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ └── Juster.Music.runtimeconfig.json │ └── obj │ ├── Debug │ ├── net5.0-windows │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── Juster.Music.AssemblyInfo.cs │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ ├── Juster.Music.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Juster.Music.assets.cache │ │ ├── Juster.Music.csproj.CopyComplete │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ ├── Juster.Music.designer.deps.json │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ ├── Juster.Music.dll │ │ ├── Juster.Music.g.resources │ │ ├── Juster.Music.genruntimeconfig.cache │ │ ├── Juster.Music.pdb │ │ ├── Juster.Music_MarkupCompile.cache │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ ├── Juster.Music_MarkupCompile.lref │ │ ├── MainWindow.baml │ │ ├── MainWindow.g.cs │ │ ├── MainWindow.g.i.cs │ │ ├── Views │ │ │ ├── LoginView.baml │ │ │ ├── LoginView.g.cs │ │ │ └── LoginView.g.i.cs │ │ ├── apphost.exe │ │ └── ref │ │ │ └── Juster.Music.dll │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── Juster.Music.AssemblyInfo.cs │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ ├── Juster.Music.assets.cache │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ ├── Juster.Music.designer.deps.json │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ ├── Juster.Music.dll │ │ ├── Juster.Music.g.resources │ │ ├── Juster.Music.genruntimeconfig.cache │ │ ├── Juster.Music.pdb │ │ ├── Juster.Music_MarkupCompile.cache │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ ├── Juster.Music_MarkupCompile.i.lref │ │ ├── Juster.Music_MarkupCompile.lref │ │ ├── MainWindow.baml │ │ ├── MainWindow.g.cs │ │ ├── MainWindow.g.i.cs │ │ └── apphost.exe │ ├── Juster.Music.csproj.nuget.dgspec.json │ ├── Juster.Music.csproj.nuget.g.props │ ├── Juster.Music.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Part9 模板 ├── src │ ├── Juster.Common │ │ ├── BindableBase.cs │ │ ├── ColorConvert.cs │ │ ├── Juster.Common.csproj │ │ ├── Juster.Common.csproj.user │ │ ├── PropertySupport.cs │ │ ├── RelayCommand.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── Juster.Common.deps.json │ │ │ │ ├── Juster.Common.dll │ │ │ │ └── Juster.Common.pdb │ │ ├── imgs │ │ │ └── music.png │ │ └── obj │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── Juster.Common.AssemblyInfo.cs │ │ │ │ ├── Juster.Common.AssemblyInfoInputs.cache │ │ │ │ ├── Juster.Common.assets.cache │ │ │ │ ├── Juster.Common.csproj.CoreCompileInputs.cache │ │ │ │ ├── Juster.Common.csproj.FileListAbsolute.txt │ │ │ │ ├── Juster.Common.designer.deps.json │ │ │ │ ├── Juster.Common.designer.runtimeconfig.json │ │ │ │ ├── Juster.Common.dll │ │ │ │ ├── Juster.Common.g.resources │ │ │ │ ├── Juster.Common.pdb │ │ │ │ ├── Juster.Common_MarkupCompile.i.cache │ │ │ │ └── MainWindow.g.i.cs │ │ │ ├── Juster.Common.csproj.nuget.dgspec.json │ │ │ ├── Juster.Common.csproj.nuget.g.props │ │ │ ├── Juster.Common.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── Juster.DAL │ │ ├── DataService.cs │ │ ├── Juster.DAL.csproj │ │ ├── Juster.DAL.csproj.user │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── Juster.DAL.deps.json │ │ │ │ ├── Juster.DAL.dll │ │ │ │ └── Juster.DAL.pdb │ │ └── obj │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── Juster.DAL.AssemblyInfo.cs │ │ │ │ ├── Juster.DAL.AssemblyInfoInputs.cache │ │ │ │ ├── Juster.DAL.assets.cache │ │ │ │ ├── Juster.DAL.csproj.CoreCompileInputs.cache │ │ │ │ ├── Juster.DAL.csproj.FileListAbsolute.txt │ │ │ │ ├── Juster.DAL.csprojAssemblyReference.cache │ │ │ │ ├── Juster.DAL.designer.deps.json │ │ │ │ ├── Juster.DAL.designer.runtimeconfig.json │ │ │ │ ├── Juster.DAL.dll │ │ │ │ ├── Juster.DAL.pdb │ │ │ │ └── MainWindow.g.i.cs │ │ │ ├── Juster.DAL.csproj.nuget.dgspec.json │ │ │ ├── Juster.DAL.csproj.nuget.g.props │ │ │ ├── Juster.DAL.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── Juster.Music │ │ ├── .vs │ │ └── Juster.Music │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── Juster.Music.csproj │ │ ├── Juster.Music.csproj.user │ │ ├── Juster.Music.sln │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Models │ │ ├── LoginModel.cs │ │ ├── MainModel.cs │ │ ├── SongModel.cs │ │ └── SongSheetModel.cs │ │ ├── ViewModels │ │ ├── LoginViewModel.cs │ │ └── MainViewModel.cs │ │ ├── Views │ │ ├── LoginView.xaml │ │ └── LoginView.xaml.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── net5.0-windows │ │ │ ├── Juster.Common.dll │ │ │ ├── Juster.Common.pdb │ │ │ ├── Juster.DAL.dll │ │ │ ├── Juster.DAL.pdb │ │ │ ├── Juster.Music.deps.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.exe │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ │ ├── Juster.Music.runtimeconfig.json │ │ │ └── ref │ │ │ │ └── Juster.Music.dll │ │ │ └── netcoreapp3.1 │ │ │ ├── Juster.Music.deps.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.exe │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music.runtimeconfig.dev.json │ │ │ └── Juster.Music.runtimeconfig.json │ │ └── obj │ │ ├── Debug │ │ ├── net5.0-windows │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Juster.Music.AssemblyInfo.cs │ │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ │ ├── Juster.Music.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Juster.Music.assets.cache │ │ │ ├── Juster.Music.csproj.CopyComplete │ │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ │ ├── Juster.Music.designer.deps.json │ │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.g.resources │ │ │ ├── Juster.Music.genruntimeconfig.cache │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music_MarkupCompile.cache │ │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ │ ├── Juster.Music_MarkupCompile.lref │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ ├── Views │ │ │ │ ├── LoginView.baml │ │ │ │ ├── LoginView.g.cs │ │ │ │ └── LoginView.g.i.cs │ │ │ ├── apphost.exe │ │ │ └── ref │ │ │ │ └── Juster.Music.dll │ │ └── netcoreapp3.1 │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Juster.Music.AssemblyInfo.cs │ │ │ ├── Juster.Music.AssemblyInfoInputs.cache │ │ │ ├── Juster.Music.assets.cache │ │ │ ├── Juster.Music.csproj.CoreCompileInputs.cache │ │ │ ├── Juster.Music.csproj.FileListAbsolute.txt │ │ │ ├── Juster.Music.csprojAssemblyReference.cache │ │ │ ├── Juster.Music.designer.deps.json │ │ │ ├── Juster.Music.designer.runtimeconfig.json │ │ │ ├── Juster.Music.dll │ │ │ ├── Juster.Music.g.resources │ │ │ ├── Juster.Music.genruntimeconfig.cache │ │ │ ├── Juster.Music.pdb │ │ │ ├── Juster.Music_MarkupCompile.cache │ │ │ ├── Juster.Music_MarkupCompile.i.cache │ │ │ ├── Juster.Music_MarkupCompile.i.lref │ │ │ ├── Juster.Music_MarkupCompile.lref │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ └── apphost.exe │ │ ├── Juster.Music.csproj.nuget.dgspec.json │ │ ├── Juster.Music.csproj.nuget.g.props │ │ ├── Juster.Music.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache └── 模板.pptx └── README.md /Part10 线程/src/Juster.Common/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/BindableBase.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/ColorConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/ColorConvert.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/Juster.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/Juster.Common.csproj -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/Juster.Common.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/Juster.Common.csproj.user -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/PropertySupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/PropertySupport.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/RelayCommand.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.dll -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.pdb -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/imgs/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/imgs/music.png -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 01dbb75b01e390ff86fa8954b7262b28c6c11084 2 | -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a405568c56bb1dfa0ae41003c48a9afc6103868f 2 | -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.dll -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.pdb -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/obj/Juster.Common.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/obj/Juster.Common.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/obj/project.assets.json -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Common/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Common/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part10 线程/src/Juster.DAL/DataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.DAL/DataService.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.DAL/Juster.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.DAL/Juster.DAL.csproj -------------------------------------------------------------------------------- /Part10 线程/src/Juster.DAL/Juster.DAL.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.DAL/Juster.DAL.csproj.user -------------------------------------------------------------------------------- /Part10 线程/src/Juster.DAL/bin/Debug/netcoreapp3.1/Juster.DAL.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.DAL/bin/Debug/netcoreapp3.1/Juster.DAL.deps.json -------------------------------------------------------------------------------- /Part10 线程/src/Juster.DAL/bin/Debug/netcoreapp3.1/Juster.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.DAL/bin/Debug/netcoreapp3.1/Juster.DAL.dll -------------------------------------------------------------------------------- /Part10 线程/src/Juster.DAL/bin/Debug/netcoreapp3.1/Juster.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.DAL/bin/Debug/netcoreapp3.1/Juster.DAL.pdb -------------------------------------------------------------------------------- /Part10 线程/src/Juster.DAL/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.DAL/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f482aba1fe8e7534af923ab08ec3f28e74b3bb52 2 | -------------------------------------------------------------------------------- /Part10 线程/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0f1383cf390afcb01393d21c022ce35d830a4c41 2 | -------------------------------------------------------------------------------- /Part10 线程/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.dll -------------------------------------------------------------------------------- /Part10 线程/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.pdb -------------------------------------------------------------------------------- /Part10 线程/src/Juster.DAL/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.DAL/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Part10 线程/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part10 线程/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part10 线程/src/Juster.DAL/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.DAL/obj/project.assets.json -------------------------------------------------------------------------------- /Part10 线程/src/Juster.DAL/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.DAL/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/.vs/Juster.Music/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/.vs/Juster.Music/v16/.suo -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/App.xaml -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/App.xaml.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/AssemblyInfo.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/Juster.Music.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/Juster.Music.csproj -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/Juster.Music.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/Juster.Music.csproj.user -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/Juster.Music.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/Juster.Music.sln -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/MainWindow.xaml -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/Models/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/Models/LoginModel.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/Models/MainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/Models/MainModel.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/Models/SongModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/Models/SongModel.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/Models/SongSheetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/Models/SongSheetModel.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/Views/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/Views/LoginView.xaml -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/Views/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/Views/LoginView.xaml.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.dll -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.pdb -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/bin/Debug/net5.0-windows/Juster.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/bin/Debug/net5.0-windows/Juster.DAL.dll -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/bin/Debug/net5.0-windows/Juster.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/bin/Debug/net5.0-windows/Juster.DAL.pdb -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.dll -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.exe -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.pdb -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/App.g.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/App.g.i.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8f0c712db0315569a390b8d5e467ee8d66e34646 2 | -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2c1711d9f9d688e99dfc0249b56015b1764360f3 2 | -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.dll -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 7a2a965e640c87ba25189343b4e8185a6dfa5584 2 | -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.pdb -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.baml -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Debug/net5.0-windows/apphost.exe -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7ba94167827294d8ce4a5606ad92850325649f6b 2 | -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a413bfa0fd996cecb11cbf065e47af59a07e2b12 2 | -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 768e06a13a856ed3cd119a6de331384582bfa733 2 | -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/project.assets.json -------------------------------------------------------------------------------- /Part10 线程/src/Juster.Music/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/src/Juster.Music/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part10 线程/线程.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part10 线程/线程.pptx -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/BindableBase.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/ColorConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/ColorConvert.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/Juster.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/Juster.Common.csproj -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/Juster.Common.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/Juster.Common.csproj.user -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/PropertySupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/PropertySupport.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/RelayCommand.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/imgs/befor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/imgs/befor.png -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/imgs/logo.png -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/imgs/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/imgs/music.png -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/imgs/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/imgs/next.png -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/imgs/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/imgs/play.png -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/imgs/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/imgs/stop.png -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/mp3/周杰伦 - 稻香.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/mp3/周杰伦 - 稻香.mp3 -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/mp3/蔡依林 - 日不落.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/mp3/蔡依林 - 日不落.mp3 -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/mp3/蔡依林 - 特务J.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/mp3/蔡依林 - 特务J.mp3 -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/obj/Debug/net5.0-windows/Juster.Common.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | a53a7e045eb24355f24afb14a6e87d4e0d3c8633 2 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/obj/Debug/net5.0-windows/Juster.Common.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3a3c713f360107d87fa15d1ab941cb5fc7fd7996 2 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 01dbb75b01e390ff86fa8954b7262b28c6c11084 2 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a405568c56bb1dfa0ae41003c48a9afc6103868f 2 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/obj/project.assets.json -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Common/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Common/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/DataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/DataService.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/Juster.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/Juster.DAL.csproj -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/Juster.DAL.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/Juster.DAL.csproj.user -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/bin/Debug/net5.0-windows/Juster.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/bin/Debug/net5.0-windows/Juster.DAL.dll -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/bin/Debug/net5.0-windows/Juster.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/bin/Debug/net5.0-windows/Juster.DAL.pdb -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/bin/Debug/netcoreapp3.1/Juster.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/bin/Debug/netcoreapp3.1/Juster.DAL.dll -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/bin/Debug/netcoreapp3.1/Juster.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/bin/Debug/netcoreapp3.1/Juster.DAL.pdb -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/obj/Debug/net5.0-windows/Juster.DAL.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e66bbc25354d4b1e12e02c0ebff069cfa49732ca 2 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/obj/Debug/net5.0-windows/Juster.DAL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 44cdba7a96622d279153831ab3377d481414afd0 2 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/obj/Debug/net5.0-windows/Juster.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/obj/Debug/net5.0-windows/Juster.DAL.dll -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/obj/Debug/net5.0-windows/Juster.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/obj/Debug/net5.0-windows/Juster.DAL.pdb -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f482aba1fe8e7534af923ab08ec3f28e74b3bb52 2 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0f1383cf390afcb01393d21c022ce35d830a4c41 2 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.dll -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.pdb -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/obj/project.assets.json -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.DAL/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.DAL/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/Juster.Logger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Logger/Juster.Logger.csproj -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/Juster.Logger.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Logger/Juster.Logger.csproj.user -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Logger/NLog.config -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/NLog.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Logger/NLog.xsd -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/NLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Logger/NLogger.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/bin/Debug/net5.0/Juster.Logger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Logger/bin/Debug/net5.0/Juster.Logger.dll -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/bin/Debug/net5.0/Juster.Logger.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Logger/bin/Debug/net5.0/Juster.Logger.pdb -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/bin/Debug/net5.0/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Logger/bin/Debug/net5.0/NLog.config -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/bin/Debug/net5.0/ref/Juster.Logger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Logger/bin/Debug/net5.0/ref/Juster.Logger.dll -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/obj/Debug/net5.0/Juster.Logger.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c16a7b02829eadd80a05401c6140ba1d7f95acfb 2 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/obj/Debug/net5.0/Juster.Logger.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6b2c5dba388f2b6113703e0da632cd9c76a3a93c 2 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/obj/Debug/net5.0/Juster.Logger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Logger/obj/Debug/net5.0/Juster.Logger.dll -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/obj/Debug/net5.0/Juster.Logger.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Logger/obj/Debug/net5.0/Juster.Logger.pdb -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/obj/Debug/net5.0/ref/Juster.Logger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Logger/obj/Debug/net5.0/ref/Juster.Logger.dll -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/obj/Debug/netcoreapp3.1/Juster.Logger.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c16a7b02829eadd80a05401c6140ba1d7f95acfb 2 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/obj/Juster.Logger.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Logger/obj/Juster.Logger.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Logger/obj/project.assets.json -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Logger/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Logger/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/.vs/Juster.Music/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/.vs/Juster.Music/v16/.suo -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/App.xaml -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/App.xaml.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/AssemblyInfo.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/Juster.Music.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/Juster.Music.csproj -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/Juster.Music.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/Juster.Music.csproj.user -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/Juster.Music.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/Juster.Music.sln -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/MainWindow.xaml -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/Models/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/Models/LoginModel.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/Models/MainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/Models/MainModel.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/Models/SongModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/Models/SongModel.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/Models/SongSheetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/Models/SongSheetModel.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/Views/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/Views/LoginView.xaml -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/Views/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/Views/LoginView.xaml.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/bin/Debug/net5.0-windows/Juster.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/bin/Debug/net5.0-windows/Juster.DAL.dll -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/bin/Debug/net5.0-windows/Juster.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/bin/Debug/net5.0-windows/Juster.DAL.pdb -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/bin/Debug/net5.0-windows/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/bin/Debug/net5.0-windows/NLog.config -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/bin/Debug/net5.0-windows/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/bin/Debug/net5.0-windows/NLog.dll -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Debug/net5.0-windows/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/obj/Debug/net5.0-windows/App.g.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Debug/net5.0-windows/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/obj/Debug/net5.0-windows/App.g.i.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8f0c712db0315569a390b8d5e467ee8d66e34646 2 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 30cdc4ad3c06a1d599a5909d19e995e92d2afbbf 2 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Debug/net5.0-windows/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/obj/Debug/net5.0-windows/apphost.exe -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7ba94167827294d8ce4a5606ad92850325649f6b 2 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a413bfa0fd996cecb11cbf065e47af59a07e2b12 2 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 768e06a13a856ed3cd119a6de331384582bfa733 2 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/obj/project.assets.json -------------------------------------------------------------------------------- /Part11 项目(完结)/src/Juster.Music/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/src/Juster.Music/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part11 项目(完结)/项目.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part11 项目(完结)/项目.pptx -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/.vs/Juster.Music/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/.vs/Juster.Music/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/.vs/Juster.Music/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/.vs/Juster.Music/v16/.suo -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/App.xaml -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/App.xaml.cs -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/AssemblyInfo.cs -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/Juster.Music.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/Juster.Music.csproj -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/Juster.Music.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/Juster.Music.csproj.user -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/Juster.Music.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/Juster.Music.sln -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/MainWindow.xaml -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.deps.json -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7ba94167827294d8ce4a5606ad92850325649f6b 2 | -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a413bfa0fd996cecb11cbf065e47af59a07e2b12 2 | -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 768e06a13a856ed3cd119a6de331384582bfa733 2 | -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/obj/Juster.Music.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/obj/Juster.Music.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/obj/project.assets.json -------------------------------------------------------------------------------- /Part1初识WPF/Juster.Music/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/Juster.Music/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part1初识WPF/初识WPF.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part1初识WPF/初识WPF.pptx -------------------------------------------------------------------------------- /Part2布局/Juster.Music/.vs/Juster.Music/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/.vs/Juster.Music/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Part2布局/Juster.Music/.vs/Juster.Music/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/.vs/Juster.Music/v16/.suo -------------------------------------------------------------------------------- /Part2布局/Juster.Music/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/App.xaml -------------------------------------------------------------------------------- /Part2布局/Juster.Music/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/App.xaml.cs -------------------------------------------------------------------------------- /Part2布局/Juster.Music/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/AssemblyInfo.cs -------------------------------------------------------------------------------- /Part2布局/Juster.Music/Juster.Music.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/Juster.Music.csproj -------------------------------------------------------------------------------- /Part2布局/Juster.Music/Juster.Music.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/Juster.Music.csproj.user -------------------------------------------------------------------------------- /Part2布局/Juster.Music/Juster.Music.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/Juster.Music.sln -------------------------------------------------------------------------------- /Part2布局/Juster.Music/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/MainWindow.xaml -------------------------------------------------------------------------------- /Part2布局/Juster.Music/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Part2布局/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.deps.json -------------------------------------------------------------------------------- /Part2布局/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part2布局/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe -------------------------------------------------------------------------------- /Part2布局/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7ba94167827294d8ce4a5606ad92850325649f6b 2 | -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.assets.cache -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a413bfa0fd996cecb11cbf065e47af59a07e2b12 2 | -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.g.resources -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 768e06a13a856ed3cd119a6de331384582bfa733 2 | -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Juster.Music.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/obj/Juster.Music.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/obj/project.assets.json -------------------------------------------------------------------------------- /Part2布局/Juster.Music/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/Juster.Music/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part2布局/XAML布局.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part2布局/XAML布局.pptx -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/.vs/Juster.Music/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/.vs/Juster.Music/v16/.suo -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/App.xaml -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/App.xaml.cs -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/AssemblyInfo.cs -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/Juster.Music.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/Juster.Music.csproj -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/Juster.Music.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/Juster.Music.csproj.user -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/Juster.Music.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/Juster.Music.sln -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/MainWindow.xaml -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7ba94167827294d8ce4a5606ad92850325649f6b 2 | -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a413bfa0fd996cecb11cbf065e47af59a07e2b12 2 | -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 768e06a13a856ed3cd119a6de331384582bfa733 2 | -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/Juster.Music.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/obj/Juster.Music.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/obj/project.assets.json -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Juster.Music/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Juster.Music/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part3控件、依赖项属性/Part3控件、依赖项属性.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part3控件、依赖项属性/Part3控件、依赖项属性.pptx -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Common/BindableBase.cs -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/Juster.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Common/Juster.Common.csproj -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/PropertySupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Common/PropertySupport.cs -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/bin/Debug/net5.0/Juster.Common.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Common/bin/Debug/net5.0/Juster.Common.deps.json -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/bin/Debug/net5.0/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Common/bin/Debug/net5.0/Juster.Common.dll -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/bin/Debug/net5.0/Juster.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Common/bin/Debug/net5.0/Juster.Common.pdb -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/bin/Debug/net5.0/ref/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Common/bin/Debug/net5.0/ref/Juster.Common.dll -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/obj/Debug/net5.0/Juster.Common.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 01dbb75b01e390ff86fa8954b7262b28c6c11084 2 | -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/obj/Debug/net5.0/Juster.Common.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Common/obj/Debug/net5.0/Juster.Common.assets.cache -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/obj/Debug/net5.0/Juster.Common.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0015fda5bc6d2ed46c4eafcd930fb17ed2cea32d 2 | -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/obj/Debug/net5.0/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Common/obj/Debug/net5.0/Juster.Common.dll -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/obj/Debug/net5.0/Juster.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Common/obj/Debug/net5.0/Juster.Common.pdb -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/obj/Debug/net5.0/ref/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Common/obj/Debug/net5.0/ref/Juster.Common.dll -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 01dbb75b01e390ff86fa8954b7262b28c6c11084 2 | -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/obj/Juster.Common.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Common/obj/Juster.Common.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Common/obj/project.assets.json -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Common/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Common/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/.vs/Juster.Music/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/.vs/Juster.Music/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/.vs/Juster.Music/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/.vs/Juster.Music/v16/.suo -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/App.xaml -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/App.xaml.cs -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/AssemblyInfo.cs -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/Class1.cs -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/Juster.Music.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/Juster.Music.csproj -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/Juster.Music.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/Juster.Music.csproj.user -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/Juster.Music.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/Juster.Music.sln -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/MainWindow.xaml -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/TempModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/TempModel.cs -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.dll -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.pdb -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.dll -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.exe -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.pdb -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/bin/Debug/net5.0-windows/ref/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/bin/Debug/net5.0-windows/ref/Juster.Music.dll -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/App.g.cs -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/App.g.i.cs -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8f0c712db0315569a390b8d5e467ee8d66e34646 2 | -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a87aba1a3a9c710428dbfc31f70ddcb18aa5d3be 2 | -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.dll -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 7a2a965e640c87ba25189343b4e8185a6dfa5584 2 | -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.pdb -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.baml -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.cs -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/apphost.exe -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/ref/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Debug/net5.0-windows/ref/Juster.Music.dll -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7ba94167827294d8ce4a5606ad92850325649f6b 2 | -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a413bfa0fd996cecb11cbf065e47af59a07e2b12 2 | -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 768e06a13a856ed3cd119a6de331384582bfa733 2 | -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/project.assets.json -------------------------------------------------------------------------------- /Part4绑定/src/Juster.Music/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/src/Juster.Music/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part4绑定/绑定.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part4绑定/绑定.pptx -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Common/BindableBase.cs -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/Juster.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Common/Juster.Common.csproj -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/Juster.Common.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Common/Juster.Common.csproj.user -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/PropertySupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Common/PropertySupport.cs -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Common/RelayCommand.cs -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.dll -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.pdb -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Common/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 01dbb75b01e390ff86fa8954b7262b28c6c11084 2 | -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5df7f5423303abe286d065676f9a178f465fe103 2 | -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.dll -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.pdb -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Common/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/obj/Juster.Common.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Common/obj/Juster.Common.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Common/obj/project.assets.json -------------------------------------------------------------------------------- /Part5命令/src/Juster.Common/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Common/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/.vs/Juster.Music/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/.vs/Juster.Music/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/.vs/Juster.Music/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/.vs/Juster.Music/v16/.suo -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/App.xaml -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/App.xaml.cs -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/AssemblyInfo.cs -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/Juster.Music.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/Juster.Music.csproj -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/Juster.Music.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/Juster.Music.csproj.user -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/Juster.Music.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/Juster.Music.sln -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/MainWindow.xaml -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/TempModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/TempModel.cs -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.dll -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.pdb -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.dll -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.exe -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.pdb -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/bin/Debug/net5.0-windows/ref/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/bin/Debug/net5.0-windows/ref/Juster.Music.dll -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/App.g.cs -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/App.g.i.cs -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8f0c712db0315569a390b8d5e467ee8d66e34646 2 | -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 347d03e2ee3dcea4d7eb07d159214218baf00dde 2 | -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.dll -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 7a2a965e640c87ba25189343b4e8185a6dfa5584 2 | -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.pdb -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.baml -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.cs -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/apphost.exe -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/ref/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Debug/net5.0-windows/ref/Juster.Music.dll -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7ba94167827294d8ce4a5606ad92850325649f6b 2 | -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a413bfa0fd996cecb11cbf065e47af59a07e2b12 2 | -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 768e06a13a856ed3cd119a6de331384582bfa733 2 | -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/project.assets.json -------------------------------------------------------------------------------- /Part5命令/src/Juster.Music/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/src/Juster.Music/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part5命令/命令.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part5命令/命令.pptx -------------------------------------------------------------------------------- /Part6MVVM/MVVM模式.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/MVVM模式.pptx -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Common/BindableBase.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/Juster.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Common/Juster.Common.csproj -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/Juster.Common.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Common/Juster.Common.csproj.user -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/PropertySupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Common/PropertySupport.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Common/RelayCommand.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.dll -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.pdb -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Common/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 01dbb75b01e390ff86fa8954b7262b28c6c11084 2 | -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5df7f5423303abe286d065676f9a178f465fe103 2 | -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.dll -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.pdb -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Common/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/obj/Juster.Common.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Common/obj/Juster.Common.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Common/obj/project.assets.json -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Common/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Common/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/.vs/Juster.Music/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/.vs/Juster.Music/v16/.suo -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/App.xaml -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/App.xaml.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/AssemblyInfo.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/Juster.Music.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/Juster.Music.csproj -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/Juster.Music.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/Juster.Music.csproj.user -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/Juster.Music.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/Juster.Music.sln -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/MainWindow.xaml -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/Models/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/Models/LoginModel.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/Models/MainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/Models/MainModel.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/Views/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/Views/LoginView.xaml -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/Views/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/Views/LoginView.xaml.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.dll -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.pdb -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.dll -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.exe -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.pdb -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/App.g.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/App.g.i.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8f0c712db0315569a390b8d5e467ee8d66e34646 2 | -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6b4f68e63dbd46e06dc2ca6a8344d823a83177ca 2 | -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.dll -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 7a2a965e640c87ba25189343b4e8185a6dfa5584 2 | -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.pdb -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.baml -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Debug/net5.0-windows/apphost.exe -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7ba94167827294d8ce4a5606ad92850325649f6b 2 | -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a413bfa0fd996cecb11cbf065e47af59a07e2b12 2 | -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 768e06a13a856ed3cd119a6de331384582bfa733 2 | -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/project.assets.json -------------------------------------------------------------------------------- /Part6MVVM/src/Juster.Music/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part6MVVM/src/Juster.Music/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Common/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Common/BindableBase.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Common/Juster.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Common/Juster.Common.csproj -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Common/Juster.Common.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Common/Juster.Common.csproj.user -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Common/PropertySupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Common/PropertySupport.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Common/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Common/RelayCommand.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.dll -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.pdb -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Common/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Common/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 01dbb75b01e390ff86fa8954b7262b28c6c11084 2 | -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5df7f5423303abe286d065676f9a178f465fe103 2 | -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.dll -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.pdb -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Common/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Common/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Common/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Common/obj/project.assets.json -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Common/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Common/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/.vs/Juster.Music/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/.vs/Juster.Music/v16/.suo -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/App.xaml -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/App.xaml.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/AssemblyInfo.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/Juster.Music.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/Juster.Music.csproj -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/Juster.Music.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/Juster.Music.csproj.user -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/Juster.Music.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/Juster.Music.sln -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/MainWindow.xaml -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/Models/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/Models/LoginModel.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/Models/MainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/Models/MainModel.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/Views/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/Views/LoginView.xaml -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/Views/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/Views/LoginView.xaml.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.dll -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Common.pdb -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.dll -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.exe -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.pdb -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/App.g.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/App.g.i.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8f0c712db0315569a390b8d5e467ee8d66e34646 2 | -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6b4f68e63dbd46e06dc2ca6a8344d823a83177ca 2 | -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.dll -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 7a2a965e640c87ba25189343b4e8185a6dfa5584 2 | -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.pdb -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.baml -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Debug/net5.0-windows/apphost.exe -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7ba94167827294d8ce4a5606ad92850325649f6b 2 | -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a413bfa0fd996cecb11cbf065e47af59a07e2b12 2 | -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 768e06a13a856ed3cd119a6de331384582bfa733 2 | -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/project.assets.json -------------------------------------------------------------------------------- /Part7资源、样式/src/Juster.Music/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/src/Juster.Music/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part7资源、样式/资源、样式.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part7资源、样式/资源、样式.pptx -------------------------------------------------------------------------------- /Part8 Convert/Convert.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/Convert.pptx -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Common/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Common/BindableBase.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Common/ColorConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Common/ColorConvert.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Common/Juster.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Common/Juster.Common.csproj -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Common/Juster.Common.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Common/Juster.Common.csproj.user -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Common/PropertySupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Common/PropertySupport.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Common/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Common/RelayCommand.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Common/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Common/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 01dbb75b01e390ff86fa8954b7262b28c6c11084 2 | -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a405568c56bb1dfa0ae41003c48a9afc6103868f 2 | -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Common/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Common/obj/project.assets.json -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Common/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Common/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/.vs/Juster.Music/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/.vs/Juster.Music/v16/.suo -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/App.xaml -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/App.xaml.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/AssemblyInfo.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/Juster.Music.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/Juster.Music.csproj -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/Juster.Music.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/Juster.Music.csproj.user -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/Juster.Music.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/Juster.Music.sln -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/MainWindow.xaml -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/Models/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/Models/LoginModel.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/Models/MainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/Models/MainModel.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/Views/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/Views/LoginView.xaml -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/Views/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/Views/LoginView.xaml.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Debug/net5.0-windows/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/obj/Debug/net5.0-windows/App.g.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Debug/net5.0-windows/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/obj/Debug/net5.0-windows/App.g.i.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8f0c712db0315569a390b8d5e467ee8d66e34646 2 | -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6b4f68e63dbd46e06dc2ca6a8344d823a83177ca 2 | -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 7a2a965e640c87ba25189343b4e8185a6dfa5584 2 | -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Debug/net5.0-windows/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/obj/Debug/net5.0-windows/apphost.exe -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7ba94167827294d8ce4a5606ad92850325649f6b 2 | -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a413bfa0fd996cecb11cbf065e47af59a07e2b12 2 | -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 768e06a13a856ed3cd119a6de331384582bfa733 2 | -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/obj/project.assets.json -------------------------------------------------------------------------------- /Part8 Convert/src/Juster.Music/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part8 Convert/src/Juster.Music/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Common/BindableBase.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/ColorConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Common/ColorConvert.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/Juster.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Common/Juster.Common.csproj -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/Juster.Common.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Common/Juster.Common.csproj.user -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/PropertySupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Common/PropertySupport.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Common/RelayCommand.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.dll -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Common/bin/Debug/netcoreapp3.1/Juster.Common.pdb -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/imgs/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Common/imgs/music.png -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Common/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 01dbb75b01e390ff86fa8954b7262b28c6c11084 2 | -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a405568c56bb1dfa0ae41003c48a9afc6103868f 2 | -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.dll -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Common/obj/Debug/netcoreapp3.1/Juster.Common.pdb -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Common/obj/Juster.Common.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Common/obj/project.assets.json -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Common/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Common/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part9 模板/src/Juster.DAL/DataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.DAL/DataService.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.DAL/Juster.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.DAL/Juster.DAL.csproj -------------------------------------------------------------------------------- /Part9 模板/src/Juster.DAL/Juster.DAL.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.DAL/Juster.DAL.csproj.user -------------------------------------------------------------------------------- /Part9 模板/src/Juster.DAL/bin/Debug/netcoreapp3.1/Juster.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.DAL/bin/Debug/netcoreapp3.1/Juster.DAL.dll -------------------------------------------------------------------------------- /Part9 模板/src/Juster.DAL/bin/Debug/netcoreapp3.1/Juster.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.DAL/bin/Debug/netcoreapp3.1/Juster.DAL.pdb -------------------------------------------------------------------------------- /Part9 模板/src/Juster.DAL/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.DAL/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f482aba1fe8e7534af923ab08ec3f28e74b3bb52 2 | -------------------------------------------------------------------------------- /Part9 模板/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0f1383cf390afcb01393d21c022ce35d830a4c41 2 | -------------------------------------------------------------------------------- /Part9 模板/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.dll -------------------------------------------------------------------------------- /Part9 模板/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.DAL/obj/Debug/netcoreapp3.1/Juster.DAL.pdb -------------------------------------------------------------------------------- /Part9 模板/src/Juster.DAL/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.DAL/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Part9 模板/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part9 模板/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.DAL/obj/Juster.DAL.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part9 模板/src/Juster.DAL/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.DAL/obj/project.assets.json -------------------------------------------------------------------------------- /Part9 模板/src/Juster.DAL/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.DAL/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/.vs/Juster.Music/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/.vs/Juster.Music/v16/.suo -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/App.xaml -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/App.xaml.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/AssemblyInfo.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/Juster.Music.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/Juster.Music.csproj -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/Juster.Music.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/Juster.Music.csproj.user -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/Juster.Music.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/Juster.Music.sln -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/MainWindow.xaml -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/Models/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/Models/LoginModel.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/Models/MainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/Models/MainModel.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/Models/SongModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/Models/SongModel.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/Models/SongSheetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/Models/SongSheetModel.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/Views/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/Views/LoginView.xaml -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/Views/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/Views/LoginView.xaml.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/bin/Debug/net5.0-windows/Juster.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/bin/Debug/net5.0-windows/Juster.DAL.dll -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/bin/Debug/net5.0-windows/Juster.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/bin/Debug/net5.0-windows/Juster.DAL.pdb -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.dll -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.exe -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/bin/Debug/net5.0-windows/Juster.Music.pdb -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.exe -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/bin/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/App.g.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/App.g.i.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8f0c712db0315569a390b8d5e467ee8d66e34646 2 | -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2c1711d9f9d688e99dfc0249b56015b1764360f3 2 | -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.dll -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 7a2a965e640c87ba25189343b4e8185a6dfa5584 2 | -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/Juster.Music.pdb -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.baml -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/MainWindow.g.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Debug/net5.0-windows/apphost.exe -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/App.g.i.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7ba94167827294d8ce4a5606ad92850325649f6b 2 | -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a413bfa0fd996cecb11cbf065e47af59a07e2b12 2 | -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.dll -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 768e06a13a856ed3cd119a6de331384582bfa733 2 | -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music.pdb -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/Juster.Music_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\Users\Administrator\source\repos\Juster.Music\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.baml -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Juster.Music.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.props -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/Juster.Music.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/project.assets.json -------------------------------------------------------------------------------- /Part9 模板/src/Juster.Music/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/src/Juster.Music/obj/project.nuget.cache -------------------------------------------------------------------------------- /Part9 模板/模板.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/Part9 模板/模板.pptx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JusterZhu/Fast-learning-WPF/HEAD/README.md --------------------------------------------------------------------------------