嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
WPF MVVM模拟数据增删改查
.
├── WpfMvvm
│ ├── App.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── DB
│ │ └── LocalDb.cs
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── Models
│ │ └── Student.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── View
│ │ ├── StudentView.xaml
│ │ └── StudentView.xaml.cs
│ ├── ViewModel
│ │ ├── MainViewModel.cs
│ │ └── StudentViewModel.cs
│ ├── WpfMvvm.csproj
│ ├── WpfMvvm.sln
│ ├── bin
│ │ ├── Debug
│ │ │ ├── CommonServiceLocator.dll
│ │ │ ├── GalaSoft.MvvmLight.Extras.dll
│ │ │ ├── GalaSoft.MvvmLight.Extras.pdb
│ │ │ ├── GalaSoft.MvvmLight.Extras.xml
│ │ │ ├── GalaSoft.MvvmLight.Platform.dll
│ │ │ ├── GalaSoft.MvvmLight.Platform.pdb
│ │ │ ├── GalaSoft.MvvmLight.Platform.xml
│ │ │ ├── GalaSoft.MvvmLight.dll
│ │ │ ├── GalaSoft.MvvmLight.pdb
│ │ │ ├── GalaSoft.MvvmLight.xml
│ │ │ ├── System.Windows.Interactivity.dll
│ │ │ ├── WpfMvvm.exe
│ │ │ ├── WpfMvvm.exe.config
│ │ │ └── WpfMvvm.pdb
│ │ └── Release
│ ├── obj
│ │ └── Debug
│ │ ├── App.baml
│ │ ├── App.g.cs
│ │ ├── App.g.i.cs
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ ├── MainWindow.baml
│ │ ├── MainWindow.g.cs
│ │ ├── MainWindow.g.i.cs
│ │ ├── TempPE
│ │ ├── View
│ │ │ ├── StudentView.baml
│ │ │ ├── StudentView.g.cs
│ │ │ └── StudentView.g.i.cs
│ │ ├── WpfMvvm.Properties.Resources.resources
│ │ ├── WpfMvvm.csproj.AssemblyReference.cache
│ │ ├── WpfMvvm.csproj.CoreCompileInputs.cache
│ │ ├── WpfMvvm.csproj.FileListAbsolute.txt
│ │ ├── WpfMvvm.csproj.GenerateResource.cache
│ │ ├── WpfMvvm.exe
│ │ ├── WpfMvvm.g.resources
│ │ ├── WpfMvvm.pdb
│ │ ├── WpfMvvm_MarkupCompile.cache
│ │ ├── WpfMvvm_MarkupCompile.i.cache
│ │ ├── WpfMvvm_MarkupCompile.i.lref
│ │ └── WpfMvvm_MarkupCompile.lref
│ ├── packages
│ │ ├── CommonServiceLocator.2.0.2
│ │ │ ├── CommonServiceLocator.2.0.2.nupkg
│ │ │ └── lib
│ │ │ ├── net40
│ │ │ │ └── CommonServiceLocator.dll
│ │ │ ├── net45
│ │ │ │ └── CommonServiceLocator.dll
│ │ │ ├── net47
│ │ │ │ └── CommonServiceLocator.dll
│ │ │ ├── netcoreapp1.0
│ │ │ │ └── CommonServiceLocator.dll
│ │ │ ├── netstandard1.0
│ │ │ │ └── CommonServiceLocator.dll
│ │ │ └── netstandard2.0
│ │ │ └── CommonServiceLocator.dll
│ │ ├── MvvmLight.5.4.1.1
│ │ │ ├── Content
│ │ │ │ └── ViewModel
│ │ │ │ ├── MainViewModel.cs.pp
│ │ │ │ └── ViewModelLocator.cs.pp
│ │ │ ├── MvvmLight.5.4.1.1.nupkg
│ │ │ └── tools
│ │ │ └── install.ps1
│ │ └── MvvmLightLibs.5.4.1.1
│ │ ├── MvvmLightLibs.5.4.1.1.nupkg
│ │ └── lib
│ │ ├── SL5
│ │ │ ├── GalaSoft.MvvmLight.Extras.dll
│ │ │ ├── GalaSoft.MvvmLight.Extras.pdb
│ │ │ ├── GalaSoft.MvvmLight.Extras.xml
│ │ │ ├── GalaSoft.MvvmLight.dll
│ │ │ ├── GalaSoft.MvvmLight.pdb
│ │ │ ├── GalaSoft.MvvmLight.xml
│ │ │ └── System.Windows.Interactivity.dll
│ │ ├── monoandroid1
│ │ │ ├── GalaSoft.MvvmLight.Extras.XML
│ │ │ ├── GalaSoft.MvvmLight.Extras.dll
│ │ │ ├── GalaSoft.MvvmLight.Extras.pdb
│ │ │ ├── GalaSoft.MvvmLight.Platform.XML
│ │ │ ├── GalaSoft.MvvmLight.Platform.dll
│ │ │ ├── GalaSoft.MvvmLight.Platform.pdb
│ │ │ ├── GalaSoft.MvvmLight.XML
│ │ │ ├── GalaSoft.MvvmLight.dll
│ │ │ └── GalaSoft.MvvmLight.pdb
│ │ ├── net35
│ │ │ ├── GalaSoft.MvvmLight.Extras.dll
│ │ │ ├── GalaSoft.MvvmLight.Extras.pdb
│ │ │ ├── GalaSoft.MvvmLight.Extras.xml
│ │ │ ├── GalaSoft.MvvmLight.dll
│ │ │ ├── GalaSoft.MvvmLight.pdb
│ │ │ ├── GalaSoft.MvvmLight.xml
│ │ │ ├── System.Windows.Interactivity.dll
│ │ │ └── System.Windows.Interactivity.xml
│ │ ├── net40
│ │ │ ├── GalaSoft.MvvmLight.Extras.dll
│ │ │ ├── GalaSoft.MvvmLight.Extras.pdb
│ │ │ ├── GalaSoft.MvvmLight.Extras.xml
│ │ │ ├── GalaSoft.MvvmLight.dll
│ │ │ ├── GalaSoft.MvvmLight.pdb
│ │ │ ├── GalaSoft.MvvmLight.xml
│ │ │ ├── System.Windows.Interactivity.dll
│ │ │ └── System.Windows.Interactivity.xml
│ │ ├── net45
│ │ │ ├── GalaSoft.MvvmLight.Extras.dll
│ │ │ ├── GalaSoft.MvvmLight.Extras.pdb
│ │ │ ├── GalaSoft.MvvmLight.Extras.xml
│ │ │ ├── GalaSoft.MvvmLight.Platform.dll
│ │ │ ├── GalaSoft.MvvmLight.Platform.pdb
│ │ │ ├── GalaSoft.MvvmLight.Platform.xml
│ │ │ ├── GalaSoft.MvvmLight.dll
│ │ │ ├── GalaSoft.MvvmLight.pdb
│ │ │ ├── GalaSoft.MvvmLight.xml
│ │ │ └── System.Windows.Interactivity.dll
│ │ ├── portable-net45 wp8 wpa81 netcore45 monoandroid1 xamarin.ios10
│ │ │ ├── GalaSoft.MvvmLight.Extras.XML
│ │ │ ├── GalaSoft.MvvmLight.Extras.dll
│ │ │ ├── GalaSoft.MvvmLight.Extras.pdb
│ │ │ ├── GalaSoft.MvvmLight.XML
│ │ │ ├── GalaSoft.MvvmLight.dll
│ │ │ └── GalaSoft.MvvmLight.pdb
│ │ ├── uap10.0
│ │ │ ├── GalaSoft.MvvmLight.Extras.dll
│ │ │ ├── GalaSoft.MvvmLight.Extras.pdb
│ │ │ ├── GalaSoft.MvvmLight.Extras.xml
│ │ │ ├── GalaSoft.MvvmLight.Platform.dll
│ │ │ ├── GalaSoft.MvvmLight.Platform.pdb
│ │ │ ├── GalaSoft.MvvmLight.Platform.pri
│ │ │ ├── GalaSoft.MvvmLight.Platform.xml
│ │ │ ├── GalaSoft.MvvmLight.dll
│ │ │ ├── GalaSoft.MvvmLight.pdb
│ │ │ └── GalaSoft.MvvmLight.xml
│ │ ├── windows81
│ │ │ ├── GalaSoft.MvvmLight.Extras.dll
│ │ │ ├── GalaSoft.MvvmLight.Extras.pdb
│ │ │ ├── GalaSoft.MvvmLight.Extras.xml
│ │ │ ├── GalaSoft.MvvmLight.Platform.dll
│ │ │ ├── GalaSoft.MvvmLight.Platform.pdb
│ │ │ ├── GalaSoft.MvvmLight.Platform.pri
│ │ │ ├── GalaSoft.MvvmLight.Platform.xml
│ │ │ ├── GalaSoft.MvvmLight.dll
│ │ │ ├── GalaSoft.MvvmLight.pdb
│ │ │ └── GalaSoft.MvvmLight.xml
│ │ ├── wp8
│ │ │ ├── GalaSoft.MvvmLight.Extras.dll
│ │ │ ├── GalaSoft.MvvmLight.Extras.pdb
│ │ │ ├── GalaSoft.MvvmLight.Extras.xml
│ │ │ ├── GalaSoft.MvvmLight.Platform.dll
│ │ │ ├── GalaSoft.MvvmLight.Platform.pdb
│ │ │ ├── GalaSoft.MvvmLight.Platform.xml
│ │ │ ├── GalaSoft.MvvmLight.dll
│ │ │ ├── GalaSoft.MvvmLight.pdb
│ │ │ ├── GalaSoft.MvvmLight.xml
│ │ │ └── System.Windows.Interactivity.dll
│ │ ├── wp81
│ │ │ ├── GalaSoft.MvvmLight.Extras.dll
│ │ │ ├── GalaSoft.MvvmLight.Extras.pdb
│ │ │ ├── GalaSoft.MvvmLight.Extras.xml
│ │ │ ├── GalaSoft.MvvmLight.Platform.dll
│ │ │ ├── GalaSoft.MvvmLight.Platform.pdb
│ │ │ ├── GalaSoft.MvvmLight.Platform.xml
│ │ │ ├── GalaSoft.MvvmLight.dll
│ │ │ ├── GalaSoft.MvvmLight.pdb
│ │ │ ├── GalaSoft.MvvmLight.xml
│ │ │ └── System.Windows.Interactivity.dll
│ │ ├── wpa81
│ │ │ ├── GalaSoft.MvvmLight.Extras.XML
│ │ │ ├── GalaSoft.MvvmLight.Extras.dll
│ │ │ ├── GalaSoft.MvvmLight.Extras.pdb
│ │ │ ├── GalaSoft.MvvmLight.Platform.XML
│ │ │ ├── GalaSoft.MvvmLight.Platform.dll
│ │ │ ├── GalaSoft.MvvmLight.Platform.pdb
│ │ │ ├── GalaSoft.MvvmLight.Platform.pri
│ │ │ ├── GalaSoft.MvvmLight.XML
│ │ │ ├── GalaSoft.MvvmLight.dll
│ │ │ └── GalaSoft.MvvmLight.pdb
│ │ └── xamarin.ios10
│ │ ├── GalaSoft.MvvmLight.Extras.XML
│ │ ├── GalaSoft.MvvmLight.Extras.dll
│ │ ├── GalaSoft.MvvmLight.Extras.pdb
│ │ ├── GalaSoft.MvvmLight.Platform.XML
│ │ ├── GalaSoft.MvvmLight.Platform.dll
│ │ ├── GalaSoft.MvvmLight.XML
│ │ ├── GalaSoft.MvvmLight.dll
│ │ └── GalaSoft.MvvmLight.pdb
│ └── packages.config
└── 好例子网_WpfMvvm.rar
40 directories, 176 files