├── LICENSE ├── README.md ├── img ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png └── 8.png └── src ├── Examples.sln ├── Sample1 ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Sample1.csproj ├── bin │ └── Debug │ │ ├── LiveCharts.Wpf.dll │ │ ├── LiveCharts.Wpf.pdb │ │ ├── LiveCharts.Wpf.xml │ │ ├── LiveCharts.dll │ │ ├── LiveCharts.pdb │ │ ├── LiveCharts.xml │ │ ├── Sample5.exe │ │ ├── Sample5.exe.config │ │ └── Sample5.pdb ├── fonts │ └── iconfont.ttf ├── logo.jpg ├── microsoft.png ├── obj │ └── Debug │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── MainWindow.g.cs │ │ ├── MainWindow.g.i.cs │ │ ├── Sample1.csproj.CopyComplete │ │ ├── Sample1.csproj.CoreCompileInputs.cache │ │ ├── Sample1.csproj.FileListAbsolute.txt │ │ ├── Sample1.csproj.GenerateResource.cache │ │ ├── Sample1.csprojAssemblyReference.cache │ │ ├── Sample5.Properties.Resources.resources │ │ ├── Sample5.csproj.FileListAbsolute.txt │ │ ├── Sample5.csprojAssemblyReference.cache │ │ ├── Sample5.exe │ │ ├── Sample5.g.resources │ │ ├── Sample5.pdb │ │ ├── Sample5_Content.g.i.cs │ │ ├── Sample5_MarkupCompile.cache │ │ ├── Sample5_MarkupCompile.i.cache │ │ ├── Sample5_MarkupCompile.i.lref │ │ ├── Sample5_MarkupCompile.lref │ │ └── TempPE │ │ └── Properties.Resources.Designer.cs.dll └── packages.config ├── Sample2 ├── App.config ├── App.xaml ├── App.xaml.cs ├── Entity │ └── UserModule.cs ├── Fonts │ └── iconfont.ttf ├── Images │ ├── Image1.jpg │ ├── Image2.jpg │ ├── Image3.jpg │ ├── Image4.jpg │ ├── Image5.jpg │ ├── Image6.jpg │ ├── Image7.jpg │ ├── Image8.jpg │ └── background.png ├── MainView.xaml ├── MainView.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Sample2.csproj ├── View │ ├── Page1.xaml │ ├── Page1.xaml.cs │ ├── Page2.xaml │ ├── Page2.xaml.cs │ ├── Page3.xaml │ ├── Page3.xaml.cs │ ├── UserControl1.xaml │ └── UserControl1.xaml.cs ├── ViewModel │ ├── MainViewModel.cs │ └── MainViewModels.cs ├── 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 │ │ ├── UIDesign.exe │ │ ├── UIDesign.exe.config │ │ └── UIDesign.pdb ├── obj │ └── Debug │ │ ├── .NETFramework,Version=v4.5.AssemblyAttributes.cs │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── GeneratedInternalTypeHelper.g.i.cs │ │ ├── MainView.baml │ │ ├── MainView.g.cs │ │ ├── MainView.g.i.cs │ │ ├── MainWindow.g.cs │ │ ├── MainWindow.g.i.cs │ │ ├── Sample2.csproj.CopyComplete │ │ ├── Sample2.csproj.CoreCompileInputs.cache │ │ ├── Sample2.csproj.FileListAbsolute.txt │ │ ├── Sample2.csproj.GenerateResource.cache │ │ ├── Sample2.csprojAssemblyReference.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── UIDesign.Properties.Resources.resources │ │ ├── UIDesign.csproj.FileListAbsolute.txt │ │ ├── UIDesign.csprojAssemblyReference.cache │ │ ├── UIDesign.exe │ │ ├── UIDesign.g.resources │ │ ├── UIDesign.pdb │ │ ├── UIDesign_Content.g.i.cs │ │ ├── UIDesign_MarkupCompile.cache │ │ ├── UIDesign_MarkupCompile.i.cache │ │ ├── UIDesign_MarkupCompile.i.lref │ │ ├── UIDesign_MarkupCompile.lref │ │ └── View │ │ ├── Page1.baml │ │ ├── Page1.g.cs │ │ ├── Page1.g.i.cs │ │ ├── Page2.baml │ │ ├── Page2.g.cs │ │ ├── Page2.g.i.cs │ │ ├── Page3.baml │ │ ├── Page3.g.cs │ │ ├── Page3.g.i.cs │ │ ├── UserControl1.baml │ │ ├── UserControl1.g.cs │ │ └── UserControl1.g.i.cs └── packages.config ├── Sample3 ├── App.config ├── App.xaml ├── App.xaml.cs ├── Common │ └── MenuModel.cs ├── Fonts │ └── iconfont.ttf ├── Images │ ├── backimages.png │ ├── left_backimages.png │ ├── t1.png │ ├── t2.png │ ├── t3.png │ ├── t4.jpg │ ├── t4.png │ ├── t5.png │ ├── t6.png │ ├── t7.png │ ├── t8.png │ ├── t9.png │ └── tx.jpeg ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Sample3.csproj ├── ViewModel │ └── MainViewModel.cs ├── bin │ └── Debug │ │ ├── UiDeignApp2.exe │ │ ├── UiDeignApp2.exe.config │ │ └── UiDeignApp2.pdb └── obj │ └── Debug │ ├── .NETFramework,Version=v4.5.AssemblyAttributes.cs │ ├── App.g.cs │ ├── App.g.i.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── GeneratedInternalTypeHelper.g.cs │ ├── GeneratedInternalTypeHelper.g.i.cs │ ├── MainWindow.g.cs │ ├── MainWindow.g.i.cs │ ├── Sample3.csproj.CoreCompileInputs.cache │ ├── Sample3.csproj.FileListAbsolute.txt │ ├── Sample3.csproj.GenerateResource.cache │ ├── Sample3.csprojAssemblyReference.cache │ ├── TempPE │ └── Properties.Resources.Designer.cs.dll │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── UiDeignApp2.Properties.Resources.resources │ ├── UiDeignApp2.csproj.FileListAbsolute.txt │ ├── UiDeignApp2.exe │ ├── UiDeignApp2.g.resources │ ├── UiDeignApp2.pdb │ ├── UiDeignApp2_Content.g.cs │ ├── UiDeignApp2_Content.g.i.cs │ ├── UiDeignApp2_MarkupCompile.cache │ ├── UiDeignApp2_MarkupCompile.i.cache │ ├── UiDeignApp2_MarkupCompile.i.lref │ └── UiDeignApp2_MarkupCompile.lref ├── Sample4 ├── App.config ├── App.xaml ├── App.xaml.cs ├── Fonts │ └── iconfont.ttf ├── Images │ └── Img.jpg ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── ModuleInfo.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Sample4.csproj ├── UserModel.cs ├── ViewModel │ └── MainViewModel.cs ├── bin │ └── Debug │ │ ├── UiDesign.exe │ │ ├── UiDesign.exe.config │ │ └── UiDesign.pdb └── obj │ └── Debug │ ├── .NETFramework,Version=v4.5.AssemblyAttributes.cs │ ├── App.g.cs │ ├── App.g.i.cs │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── GeneratedInternalTypeHelper.g.cs │ ├── GeneratedInternalTypeHelper.g.i.cs │ ├── MainWindow.g.cs │ ├── MainWindow.g.i.cs │ ├── Sample4.csproj.CoreCompileInputs.cache │ ├── Sample4.csproj.FileListAbsolute.txt │ ├── Sample4.csproj.GenerateResource.cache │ ├── Sample4.csprojAssemblyReference.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── UiDesign.Properties.Resources.resources │ ├── UiDesign.csproj.FileListAbsolute.txt │ ├── UiDesign.csprojAssemblyReference.cache │ ├── UiDesign.exe │ ├── UiDesign.g.resources │ ├── UiDesign.pdb │ ├── UiDesign_Content.g.i.cs │ ├── UiDesign_MarkupCompile.cache │ ├── UiDesign_MarkupCompile.i.cache │ ├── UiDesign_MarkupCompile.i.lref │ └── UiDesign_MarkupCompile.lref ├── Sample5 ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Sample5.csproj ├── ViewModel │ └── MainViewModel.cs ├── back.jpg ├── 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 │ │ ├── MaterialDesignColors.dll │ │ ├── MaterialDesignColors.pdb │ │ ├── MaterialDesignThemes.Wpf.dll │ │ ├── MaterialDesignThemes.Wpf.pdb │ │ ├── MaterialDesignThemes.Wpf.xml │ │ ├── MetroApp.exe │ │ ├── MetroApp.exe.config │ │ ├── MetroApp.pdb │ │ └── System.Windows.Interactivity.dll ├── obj │ └── Debug │ │ ├── .NETFramework,Version=v4.5.AssemblyAttributes.cs │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── GeneratedInternalTypeHelper.g.i.cs │ │ ├── MainWindow.g.cs │ │ ├── MainWindow.g.i.cs │ │ ├── MetroApp.Properties.Resources.resources │ │ ├── MetroApp.csproj.FileListAbsolute.txt │ │ ├── MetroApp.csprojAssemblyReference.cache │ │ ├── MetroApp.exe │ │ ├── MetroApp.g.resources │ │ ├── MetroApp.pdb │ │ ├── MetroApp_Content.g.i.cs │ │ ├── MetroApp_MarkupCompile.cache │ │ ├── MetroApp_MarkupCompile.i.cache │ │ ├── MetroApp_MarkupCompile.i.lref │ │ ├── MetroApp_MarkupCompile.lref │ │ ├── Sample5.csproj.CopyComplete │ │ ├── Sample5.csproj.CoreCompileInputs.cache │ │ ├── Sample5.csproj.FileListAbsolute.txt │ │ ├── Sample5.csproj.GenerateResource.cache │ │ ├── Sample5.csprojAssemblyReference.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── Sample6 ├── App.config ├── App.xaml ├── App.xaml.cs ├── DropMenu.xaml ├── DropMenu.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Sample6.csproj ├── bin │ └── Debug │ │ ├── IndustrialMaterials.exe │ │ ├── IndustrialMaterials.exe.config │ │ └── IndustrialMaterials.pdb ├── demo.png ├── fonts │ └── iconfont.ttf ├── images │ ├── buttonImage.png │ ├── centerImage.png │ ├── drop.png │ ├── img3d.png │ ├── leftImage.png │ ├── leftImageSub.png │ ├── leftback.png │ ├── rightImage.png │ ├── timeback.png │ ├── topImage.png │ ├── topback.png │ ├── vs.jpg │ ├── 中部选择栏选中-1.png │ └── 中部选择栏选中-2.png └── obj │ └── Debug │ ├── .NETFramework,Version=v4.5.AssemblyAttributes.cs │ ├── App.g.cs │ ├── App.g.i.cs │ ├── CycleProcessBar.g.i.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── DropMenu.g.cs │ ├── DropMenu.g.i.cs │ ├── GeneratedInternalTypeHelper.g.i.cs │ ├── IndustrialMaterials.Properties.Resources.resources │ ├── IndustrialMaterials.csproj.CoreCompileInputs.cache │ ├── IndustrialMaterials.csproj.FileListAbsolute.txt │ ├── IndustrialMaterials.csproj.GenerateResource.cache │ ├── IndustrialMaterials.csprojAssemblyReference.cache │ ├── IndustrialMaterials.exe │ ├── IndustrialMaterials.g.resources │ ├── IndustrialMaterials.pdb │ ├── IndustrialMaterials_Content.g.i.cs │ ├── IndustrialMaterials_MarkupCompile.cache │ ├── IndustrialMaterials_MarkupCompile.i.cache │ ├── IndustrialMaterials_MarkupCompile.i.lref │ ├── IndustrialMaterials_MarkupCompile.lref │ ├── MainWindow.g.i.cs │ ├── Sample6.csprojAssemblyReference.cache │ ├── TempPE │ └── Properties.Resources.Designer.cs.dll │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Sample7 ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Sample7.csproj ├── background.jpg ├── bin │ └── Debug │ │ ├── LiveCharts.Wpf.dll │ │ ├── LiveCharts.dll │ │ ├── MaterialDesignColors.dll │ │ ├── MaterialDesignColors.pdb │ │ ├── MaterialDesignThemes.Wpf.dll │ │ ├── MaterialDesignThemes.Wpf.pdb │ │ ├── MaterialDesignThemes.Wpf.xml │ │ ├── WpfApp21.exe │ │ ├── WpfApp21.exe.config │ │ └── WpfApp21.pdb ├── iconfont.ttf ├── obj │ └── Debug │ │ ├── .NETFramework,Version=v4.5.AssemblyAttributes.cs │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── MainWindow.g.cs │ │ ├── MainWindow.g.i.cs │ │ ├── Sample7.csproj.CopyComplete │ │ ├── Sample7.csproj.CoreCompileInputs.cache │ │ ├── Sample7.csproj.FileListAbsolute.txt │ │ ├── Sample7.csproj.GenerateResource.cache │ │ ├── Sample7.csprojAssemblyReference.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── Window1.g.cs │ │ ├── Window1.g.i.cs │ │ ├── WpfApp21.Properties.Resources.resources │ │ ├── WpfApp21.csproj.CopyComplete │ │ ├── WpfApp21.csproj.CoreCompileInputs.cache │ │ ├── WpfApp21.csproj.FileListAbsolute.txt │ │ ├── WpfApp21.csproj.GenerateResource.cache │ │ ├── WpfApp21.csprojAssemblyReference.cache │ │ ├── WpfApp21.exe │ │ ├── WpfApp21.g.resources │ │ ├── WpfApp21.pdb │ │ ├── WpfApp21_Content.g.i.cs │ │ ├── WpfApp21_MarkupCompile.cache │ │ ├── WpfApp21_MarkupCompile.i.cache │ │ ├── WpfApp21_MarkupCompile.i.lref │ │ ├── WpfApp21_MarkupCompile.lref │ │ ├── 界面设计.csproj.FileListAbsolute.txt │ │ └── 界面设计.csprojAssemblyReference.cache └── packages.config ├── Sample8 ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Sample8.csproj ├── background.png ├── bin │ └── Debug │ │ ├── wof.exe │ │ ├── wof.exe.config │ │ └── wof.pdb ├── iconfont.ttf └── obj │ └── Debug │ ├── .NETFramework,Version=v4.5.AssemblyAttributes.cs │ ├── App.g.cs │ ├── App.g.i.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── MainWindow.g.cs │ ├── MainWindow.g.i.cs │ ├── Sample8.csproj.CoreCompileInputs.cache │ ├── Sample8.csproj.FileListAbsolute.txt │ ├── Sample8.csproj.GenerateResource.cache │ ├── Sample8.csprojAssemblyReference.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── wof.Properties.Resources.resources │ ├── wof.csproj.CoreCompileInputs.cache │ ├── wof.csproj.FileListAbsolute.txt │ ├── wof.csproj.GenerateResource.cache │ ├── wof.csprojAssemblyReference.cache │ ├── wof.exe │ ├── wof.g.resources │ ├── wof.pdb │ ├── wof_Content.g.i.cs │ ├── wof_MarkupCompile.cache │ ├── wof_MarkupCompile.i.cache │ ├── wof_MarkupCompile.i.lref │ ├── wof_MarkupCompile.lref │ ├── 网易云界面.csproj.CoreCompileInputs.cache │ ├── 网易云界面.csproj.FileListAbsolute.txt │ ├── 网易云界面.csproj.GenerateResource.cache │ └── 网易云界面.csprojAssemblyReference.cache └── 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 ├── LiveCharts.0.9.7 ├── .signature.p7s ├── LiveCharts.0.9.7.nupkg ├── lib │ ├── net40 │ │ ├── LiveCharts.dll │ │ ├── LiveCharts.pdb │ │ └── LiveCharts.xml │ ├── net45 │ │ ├── LiveCharts.dll │ │ ├── LiveCharts.pdb │ │ └── LiveCharts.xml │ └── portable-net45+win8+wp8 │ │ ├── LiveCharts.XML │ │ ├── LiveCharts.dll │ │ └── LiveCharts.pdb └── readme.txt ├── LiveCharts.Wpf.0.9.7 ├── .signature.p7s ├── LiveCharts.Wpf.0.9.7.nupkg ├── lib │ ├── net40 │ │ ├── LiveCharts.Wpf.XML │ │ ├── LiveCharts.Wpf.dll │ │ └── LiveCharts.Wpf.pdb │ └── net45 │ │ ├── LiveCharts.Wpf.XML │ │ ├── LiveCharts.Wpf.dll │ │ └── LiveCharts.Wpf.pdb └── tools │ └── install.ps1 ├── MaterialDesignColors.1.2.0 ├── .signature.p7s ├── MaterialDesignColors.1.2.0.nupkg └── lib │ └── net45 │ ├── MaterialDesignColors.dll │ └── MaterialDesignColors.pdb ├── MaterialDesignThemes.2.6.0 ├── .signature.p7s ├── MaterialDesignThemes.2.6.0.nupkg ├── lib │ └── net45 │ │ ├── MaterialDesignThemes.Wpf.XML │ │ ├── MaterialDesignThemes.Wpf.dll │ │ └── MaterialDesignThemes.Wpf.pdb └── src │ └── net45 │ ├── Badged.cs │ ├── BaseTheme.cs │ ├── ButtonAssist.cs │ ├── ButtonProgressAssist.cs │ ├── Card.cs │ ├── Chip.cs │ ├── Clock.cs │ ├── ClockChoiceMadeEventArgs.cs │ ├── ClockItemButton.cs │ ├── ColorPicker.cs │ ├── ColorZone.cs │ ├── ColorZoneAssist.cs │ ├── ComboBoxAssist.cs │ ├── ComboBoxPopup.cs │ ├── Converters │ ├── BooleanConverter.cs │ ├── BooleanToVisibilityConverter.cs │ ├── BorderClipConverter.cs │ ├── BrushRoundConverter.cs │ ├── BrushToRadialGradientBrushConverter.cs │ ├── CalendarDateCoalesceConverter.cs │ ├── CircularProgressBar │ │ ├── ArcEndPointConverter.cs │ │ ├── ArcSizeConverter.cs │ │ ├── LargeArcConverter.cs │ │ ├── LocalEx.cs │ │ ├── RotateTransformCentreConverter.cs │ │ └── StartPointConverter.cs │ ├── ClockItemIsCheckedConverter.cs │ ├── ClockLineConverter.cs │ ├── DrawerOffsetConverter.cs │ ├── EqualityToVisibilityConverter.cs │ ├── HintProxyFabricConverter.cs │ ├── HsbLinearGradientConverter.cs │ ├── HsbToColorConverter.cs │ ├── ListViewItemContainerStyleConverter.cs │ ├── MathConverter.cs │ ├── MathMultipleConverter.cs │ ├── NotConverter.cs │ ├── NotZeroConverter.cs │ ├── NotZeroToVisibilityConverter.cs │ ├── NullToVisibilityConverter.cs │ ├── NullableDateTimeToCurrentDateConverter.cs │ ├── PointValueConverter.cs │ ├── RangeLengthConverter.cs │ ├── RangePositionConverterConverter.cs │ ├── ShadowConverter.cs │ ├── ShadowEdgeConverter.cs │ ├── ShadowInfo.cs │ ├── SizeToRectConverter.cs │ ├── SnackbarMessageTypeConverter.cs │ ├── TextFieldHintVisibilityConverter.cs │ └── TimeToVisibilityConverter.cs │ ├── CustomPopupPlacementCallbackHelper.cs │ ├── DataGridAssist.cs │ ├── DateTimeEx.cs │ ├── DialogClosingEventArgs.cs │ ├── DialogClosingEventHandler.cs │ ├── DialogHost.cs │ ├── DialogHostEx.cs │ ├── DialogOpenedEventArgs.cs │ ├── DialogOpenedEventHandler.cs │ ├── DialogSession.cs │ ├── DpiHelper.cs │ ├── DrawerHost.cs │ ├── ExpanderAssist.cs │ ├── Extensions.cs │ ├── Flipper.cs │ ├── HintAssist.cs │ ├── HintProxyFabric.ComboBox.cs │ ├── HintProxyFabric.PasswordBox.cs │ ├── HintProxyFabric.RichTextBox.cs │ ├── HintProxyFabric.TextBox.cs │ ├── HintProxyFabric.cs │ ├── IBaseTheme.cs │ ├── IHintProxy.cs │ ├── ISnackbarMessageQueue.cs │ ├── ITheme.cs │ ├── IThemeManager.cs │ ├── Icon.cs │ ├── IconType.cs │ ├── ListBoxAssist.cs │ ├── ListSortDirectionIndicator.cs │ ├── ListViewAssist.cs │ ├── MaterialDataGridComboBoxColumn.cs │ ├── MaterialDataGridTextColumn.cs │ ├── MaterialDateDisplay.cs │ ├── MaterialDesignDarkTheme.cs │ ├── MaterialDesignLightTheme.cs │ ├── MessageQueueExtension.cs │ ├── PackIcon.cs │ ├── PackIconDataFactory.cs │ ├── PackIconExtension.cs │ ├── PackIconKind.cs │ ├── Palette.cs │ ├── PaletteHelper.cs │ ├── Plane3D.cs │ ├── PopupBox.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Settings.Designer.cs │ ├── RatingBar.cs │ ├── RatingBarButton.cs │ ├── ResourceDictionaryExtensions.cs │ ├── Ripple.cs │ ├── RippleAssist.cs │ ├── ScaleHost.cs │ ├── Screen.cs │ ├── ScrollViewerAssist.cs │ ├── ScrollbarAssist.cs │ ├── ShadowAssist.cs │ ├── SmartHint.cs │ ├── Snackbar.cs │ ├── SnackbarMessage.cs │ ├── SnackbarMessageEventArgs.cs │ ├── SnackbarMessageQueue.cs │ ├── SnackbarMessageQueueItem.cs │ ├── Spelling.cs │ ├── StringExtensions.cs │ ├── TextFieldAssist.cs │ ├── Theme.cs │ ├── ThemeAssist.cs │ ├── ThemeChangedEventArgs.cs │ ├── ThemeExtensions.cs │ ├── ThemeMarkupExtension.cs │ ├── TimePicker.cs │ ├── ToggleButtonAssist.cs │ ├── ToolTipAssist.cs │ ├── Transitions │ ├── CircleWipe.cs │ ├── FadeWipe.cs │ ├── ITransitionEffect.cs │ ├── ITransitionEffectSubject.cs │ ├── ITransitionWipe.cs │ ├── IZIndexController.cs │ ├── IndexedItemOffsetMultiplierExtension.cs │ ├── SlideDirection.cs │ ├── SlideOutWipe.cs │ ├── SlideWipe.cs │ ├── TransitionAssist.cs │ ├── TransitionEffect.cs │ ├── TransitionEffectBase.cs │ ├── TransitionEffectExtension.cs │ ├── TransitionEffectKind.cs │ ├── TransitionEffectTypeConverter.cs │ ├── Transitioner.cs │ ├── TransitionerSlide.cs │ ├── TransitionerSlideState.cs │ ├── TransitioningContent.cs │ └── TransitioningContentBase.cs │ ├── TreeHelper.cs │ ├── TreeViewAssist.cs │ ├── Underline.cs │ └── ValidationAssist.cs ├── MvvmLight.5.4.1.1 ├── .signature.p7s ├── Content │ └── ViewModel │ │ ├── MainViewModel.cs.pp │ │ └── ViewModelLocator.cs.pp ├── MvvmLight.5.4.1.1.nupkg └── tools │ └── install.ps1 └── MvvmLightLibs.5.4.1.1 ├── .signature.p7s ├── 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.dll.mdb ├── GalaSoft.MvvmLight.Extras.pdb ├── GalaSoft.MvvmLight.Platform.XML ├── GalaSoft.MvvmLight.Platform.dll ├── GalaSoft.MvvmLight.Platform.dll.mdb ├── GalaSoft.MvvmLight.Platform.pdb ├── GalaSoft.MvvmLight.XML ├── GalaSoft.MvvmLight.dll ├── GalaSoft.MvvmLight.dll.mdb └── 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 /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 henjigg 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # bilibili WPF UI设计的源代码区 2 | # bilibili 的视频区地址: https://space.bilibili.com/32497462 3 | 4 | 5 | 6 | 图片示例演示: 7 | 8 | # P1 9 | 10 | ![图例1](https://github.com/HenJigg/WPF-UI-Design-/blob/master/img/1.png) 11 | 12 | # P2 13 | 14 | ![图例2](https://github.com/HenJigg/WPF-UI-Design-/blob/master/img/2.png) 15 | 16 | # P3 17 | 18 | ![图例3](https://github.com/HenJigg/WPF-UI-Design-/blob/master/img/3.png) 19 | 20 | # P4 21 | 22 | ![图例4](https://github.com/HenJigg/WPF-UI-Design-/blob/master/img/4.png) 23 | 24 | # P5 25 | 26 | ![图例5](https://github.com/HenJigg/WPF-UI-Design-/blob/master/img/5.png) 27 | 28 | # P6 29 | 30 | ![图例6](https://github.com/HenJigg/WPF-UI-Design-/blob/master/img/6.png) 31 | 32 | # P7 33 | 34 | ![图例7](https://github.com/HenJigg/WPF-UI-Design-/blob/master/img/7.png) 35 | 36 | # P8 37 | 38 | ![图例8](https://github.com/HenJigg/WPF-UI-Design-/blob/master/img/8.png) 39 | -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/img/1.png -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/img/2.png -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/img/3.png -------------------------------------------------------------------------------- /img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/img/4.png -------------------------------------------------------------------------------- /img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/img/5.png -------------------------------------------------------------------------------- /img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/img/6.png -------------------------------------------------------------------------------- /img/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/img/7.png -------------------------------------------------------------------------------- /img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/img/8.png -------------------------------------------------------------------------------- /src/Sample1/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Sample1/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Sample1/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace Sample5 10 | { 11 | /// 12 | /// App.xaml 的交互逻辑 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Sample1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Sample5.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/Sample1/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Sample1/bin/Debug/LiveCharts.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/bin/Debug/LiveCharts.Wpf.dll -------------------------------------------------------------------------------- /src/Sample1/bin/Debug/LiveCharts.Wpf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/bin/Debug/LiveCharts.Wpf.pdb -------------------------------------------------------------------------------- /src/Sample1/bin/Debug/LiveCharts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/bin/Debug/LiveCharts.dll -------------------------------------------------------------------------------- /src/Sample1/bin/Debug/LiveCharts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/bin/Debug/LiveCharts.pdb -------------------------------------------------------------------------------- /src/Sample1/bin/Debug/Sample5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/bin/Debug/Sample5.exe -------------------------------------------------------------------------------- /src/Sample1/bin/Debug/Sample5.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Sample1/bin/Debug/Sample5.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/bin/Debug/Sample5.pdb -------------------------------------------------------------------------------- /src/Sample1/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/fonts/iconfont.ttf -------------------------------------------------------------------------------- /src/Sample1/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/logo.jpg -------------------------------------------------------------------------------- /src/Sample1/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/microsoft.png -------------------------------------------------------------------------------- /src/Sample1/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /src/Sample1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /src/Sample1/obj/Debug/Sample1.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/obj/Debug/Sample1.csproj.CopyComplete -------------------------------------------------------------------------------- /src/Sample1/obj/Debug/Sample1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | de3f7e854888fa9134372445cdb87002644c4dc1 2 | -------------------------------------------------------------------------------- /src/Sample1/obj/Debug/Sample1.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/obj/Debug/Sample1.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /src/Sample1/obj/Debug/Sample1.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/obj/Debug/Sample1.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Sample1/obj/Debug/Sample5.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/obj/Debug/Sample5.Properties.Resources.resources -------------------------------------------------------------------------------- /src/Sample1/obj/Debug/Sample5.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/obj/Debug/Sample5.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Sample1/obj/Debug/Sample5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/obj/Debug/Sample5.exe -------------------------------------------------------------------------------- /src/Sample1/obj/Debug/Sample5.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/obj/Debug/Sample5.g.resources -------------------------------------------------------------------------------- /src/Sample1/obj/Debug/Sample5.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/obj/Debug/Sample5.pdb -------------------------------------------------------------------------------- /src/Sample1/obj/Debug/Sample5_Content.g.i.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("%e5%be%ae%e8%bd%af.png")] 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/Sample1/obj/Debug/Sample5_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | Sample5 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\zhouh\Desktop\WPFUI\src\Sample1\obj\Debug\ 8 | Sample5 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\zhouh\Desktop\WPFUI\src\Sample1\App.xaml 13 | 11151548125 14 | 15 | 61434861427 16 | 151575960847 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /src/Sample1/obj/Debug/Sample5_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | Sample5 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\zhouh\Desktop\WPFUI\src\1\Sample5\obj\Debug\ 8 | Sample5 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\zhouh\Desktop\WPFUI\src\1\Sample5\App.xaml 13 | 11151548125 14 | 15 | 61434861427 16 | 151688600273 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /src/Sample1/obj/Debug/Sample5_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\zhouh\Desktop\WPFUI\src\1\Sample5\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/Sample1/obj/Debug/Sample5_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample1\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/Sample1/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample1/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /src/Sample1/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Sample2/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Sample2/App.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Sample2/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace UIDesign 10 | { 11 | /// 12 | /// App.xaml 的交互逻辑 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Sample2/Entity/UserModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace UIDesign.Entity 8 | { 9 | public class UserModule 10 | { 11 | public string FilePath { get; set; } 12 | 13 | public string UserName { get; set; } 14 | 15 | public string Content { get; set; } 16 | 17 | public string SignTime { get; set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/Sample2/Fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/Fonts/iconfont.ttf -------------------------------------------------------------------------------- /src/Sample2/Images/Image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/Images/Image1.jpg -------------------------------------------------------------------------------- /src/Sample2/Images/Image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/Images/Image2.jpg -------------------------------------------------------------------------------- /src/Sample2/Images/Image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/Images/Image3.jpg -------------------------------------------------------------------------------- /src/Sample2/Images/Image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/Images/Image4.jpg -------------------------------------------------------------------------------- /src/Sample2/Images/Image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/Images/Image5.jpg -------------------------------------------------------------------------------- /src/Sample2/Images/Image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/Images/Image6.jpg -------------------------------------------------------------------------------- /src/Sample2/Images/Image7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/Images/Image7.jpg -------------------------------------------------------------------------------- /src/Sample2/Images/Image8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/Images/Image8.jpg -------------------------------------------------------------------------------- /src/Sample2/Images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/Images/background.png -------------------------------------------------------------------------------- /src/Sample2/MainView.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | using System.Windows.Controls; 8 | using System.Windows.Data; 9 | using System.Windows.Documents; 10 | using System.Windows.Input; 11 | using System.Windows.Media; 12 | using System.Windows.Media.Imaging; 13 | using System.Windows.Shapes; 14 | using UIDesign.ViewModel; 15 | 16 | namespace UIDesign 17 | { 18 | /// 19 | /// MainView.xaml 的交互逻辑 20 | /// 21 | public partial class MainView : Window 22 | { 23 | public MainView() 24 | { 25 | InitializeComponent(); 26 | this.DataContext = new MainViewModels(); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/Sample2/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | using System.Windows.Controls; 8 | using System.Windows.Data; 9 | using System.Windows.Documents; 10 | using System.Windows.Input; 11 | using System.Windows.Media; 12 | using System.Windows.Media.Imaging; 13 | using System.Windows.Navigation; 14 | using System.Windows.Shapes; 15 | using UIDesign.ViewModel; 16 | 17 | namespace UIDesign 18 | { 19 | /// 20 | /// MainWindow.xaml 的交互逻辑 21 | /// 22 | public partial class MainWindow : Window 23 | { 24 | public MainWindow() 25 | { 26 | InitializeComponent(); 27 | this.DataContext = new MainViewModel(); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/Sample2/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace UIDesign.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/Sample2/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Sample2/View/Page1.xaml: -------------------------------------------------------------------------------- 1 |  9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/Sample2/View/Page1.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | using System.Windows.Controls; 8 | using System.Windows.Data; 9 | using System.Windows.Documents; 10 | using System.Windows.Input; 11 | using System.Windows.Media; 12 | using System.Windows.Media.Imaging; 13 | using System.Windows.Navigation; 14 | using System.Windows.Shapes; 15 | 16 | namespace UIDesign.View 17 | { 18 | /// 19 | /// Page1.xaml 的交互逻辑 20 | /// 21 | public partial class Page1 : UserControl 22 | { 23 | public Page1() 24 | { 25 | InitializeComponent(); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/Sample2/View/Page2.xaml: -------------------------------------------------------------------------------- 1 |  9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/Sample2/View/Page2.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | using System.Windows.Controls; 8 | using System.Windows.Data; 9 | using System.Windows.Documents; 10 | using System.Windows.Input; 11 | using System.Windows.Media; 12 | using System.Windows.Media.Imaging; 13 | using System.Windows.Navigation; 14 | using System.Windows.Shapes; 15 | 16 | namespace UIDesign.View 17 | { 18 | /// 19 | /// Page2.xaml 的交互逻辑 20 | /// 21 | public partial class Page2 : UserControl 22 | { 23 | public Page2() 24 | { 25 | InitializeComponent(); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/Sample2/View/Page3.xaml: -------------------------------------------------------------------------------- 1 |  10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/Sample2/View/Page3.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | using System.Windows.Controls; 8 | using System.Windows.Data; 9 | using System.Windows.Documents; 10 | using System.Windows.Input; 11 | using System.Windows.Media; 12 | using System.Windows.Media.Imaging; 13 | using System.Windows.Navigation; 14 | using System.Windows.Shapes; 15 | 16 | namespace UIDesign.View 17 | { 18 | /// 19 | /// Page3.xaml 的交互逻辑 20 | /// 21 | public partial class Page3 : Page 22 | { 23 | public Page3() 24 | { 25 | InitializeComponent(); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/Sample2/View/UserControl1.xaml: -------------------------------------------------------------------------------- 1 |  9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/Sample2/View/UserControl1.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | using System.Windows.Controls; 8 | using System.Windows.Data; 9 | using System.Windows.Documents; 10 | using System.Windows.Input; 11 | using System.Windows.Media; 12 | using System.Windows.Media.Imaging; 13 | using System.Windows.Navigation; 14 | using System.Windows.Shapes; 15 | 16 | namespace UIDesign.View 17 | { 18 | /// 19 | /// UserControl1.xaml 的交互逻辑 20 | /// 21 | public partial class UserControl1 : UserControl 22 | { 23 | public UserControl1() 24 | { 25 | InitializeComponent(); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/Sample2/ViewModel/MainViewModels.cs: -------------------------------------------------------------------------------- 1 | using GalaSoft.MvvmLight; 2 | using GalaSoft.MvvmLight.Command; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | using UIDesign.View; 9 | 10 | namespace UIDesign.ViewModel 11 | { 12 | public class MainViewModels : ViewModelBase 13 | { 14 | public MainViewModels() 15 | { 16 | openCommand = new RelayCommand(t => OpenPage(t)); 17 | } 18 | 19 | public RelayCommand openCommand { get; private set; } 20 | 21 | private object page; 22 | 23 | public object Page 24 | { 25 | get { return page; } 26 | set { page = value; RaisePropertyChanged(); } 27 | } 28 | 29 | 30 | public void OpenPage(string type) 31 | { 32 | switch (type) 33 | { 34 | case "1": Page = new Page1(); break; 35 | case "2": Page = new Page3(); break; 36 | } 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /src/Sample2/bin/Debug/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/bin/Debug/CommonServiceLocator.dll -------------------------------------------------------------------------------- /src/Sample2/bin/Debug/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/bin/Debug/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/Sample2/bin/Debug/GalaSoft.MvvmLight.Extras.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/bin/Debug/GalaSoft.MvvmLight.Extras.pdb -------------------------------------------------------------------------------- /src/Sample2/bin/Debug/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/bin/Debug/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/Sample2/bin/Debug/GalaSoft.MvvmLight.Platform.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/bin/Debug/GalaSoft.MvvmLight.Platform.pdb -------------------------------------------------------------------------------- /src/Sample2/bin/Debug/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/bin/Debug/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/Sample2/bin/Debug/GalaSoft.MvvmLight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/bin/Debug/GalaSoft.MvvmLight.pdb -------------------------------------------------------------------------------- /src/Sample2/bin/Debug/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/bin/Debug/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/Sample2/bin/Debug/UIDesign.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/bin/Debug/UIDesign.exe -------------------------------------------------------------------------------- /src/Sample2/bin/Debug/UIDesign.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Sample2/bin/Debug/UIDesign.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/bin/Debug/UIDesign.pdb -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/.NETFramework,Version=v4.5.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.5", FrameworkDisplayName = ".NET Framework 4.5")] 5 | -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/MainView.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/MainView.baml -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/Sample2.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/Sample2.csproj.CopyComplete -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/Sample2.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | bbe2c82bc31a561755450948ba123c396b257184 2 | -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/Sample2.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/Sample2.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/Sample2.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/Sample2.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/UIDesign.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/UIDesign.Properties.Resources.resources -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/UIDesign.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/UIDesign.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/UIDesign.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/UIDesign.exe -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/UIDesign.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/UIDesign.g.resources -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/UIDesign.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/UIDesign.pdb -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/UIDesign_Content.g.i.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("images/background.png")] 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/UIDesign_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | UIDesign 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\zhouh\Desktop\WPFUI\src\Sample2\obj\Debug\ 8 | UIDesign 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\zhouh\Desktop\WPFUI\src\Sample2\App.xaml 13 | 11151548125 14 | 15 | 8-883872515 16 | 681490568772 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/UIDesign_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | UIDesign 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\zhouh\Desktop\WPFUI\src\Sample2\obj\Debug\ 8 | UIDesign 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\zhouh\Desktop\WPFUI\src\Sample2\App.xaml 13 | 11151548125 14 | 15 | 8-883872515 16 | 681490568772 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/UIDesign_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | C:\Users\zhouh\Desktop\WPFUI\src\Sample2\obj\Debug\GeneratedInternalTypeHelper.g.i.cs 2 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample2\App.xaml;; 3 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample2\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/UIDesign_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample2\App.xaml;; 3 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample2\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/View/Page1.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/View/Page1.baml -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/View/Page2.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/View/Page2.baml -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/View/Page3.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/View/Page3.baml -------------------------------------------------------------------------------- /src/Sample2/obj/Debug/View/UserControl1.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample2/obj/Debug/View/UserControl1.baml -------------------------------------------------------------------------------- /src/Sample2/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Sample3/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Sample3/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Sample3/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace UiDeignApp2 10 | { 11 | /// 12 | /// App.xaml 的交互逻辑 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Sample3/Common/MenuModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace UiDeignApp2.Common 8 | { 9 | public class MenuModel 10 | { 11 | public string IconFont { get; set; } 12 | 13 | public string Title { get; set; } 14 | 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/Sample3/Fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/Fonts/iconfont.ttf -------------------------------------------------------------------------------- /src/Sample3/Images/backimages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/Images/backimages.png -------------------------------------------------------------------------------- /src/Sample3/Images/left_backimages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/Images/left_backimages.png -------------------------------------------------------------------------------- /src/Sample3/Images/t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/Images/t1.png -------------------------------------------------------------------------------- /src/Sample3/Images/t2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/Images/t2.png -------------------------------------------------------------------------------- /src/Sample3/Images/t3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/Images/t3.png -------------------------------------------------------------------------------- /src/Sample3/Images/t4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/Images/t4.jpg -------------------------------------------------------------------------------- /src/Sample3/Images/t4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/Images/t4.png -------------------------------------------------------------------------------- /src/Sample3/Images/t5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/Images/t5.png -------------------------------------------------------------------------------- /src/Sample3/Images/t6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/Images/t6.png -------------------------------------------------------------------------------- /src/Sample3/Images/t7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/Images/t7.png -------------------------------------------------------------------------------- /src/Sample3/Images/t8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/Images/t8.png -------------------------------------------------------------------------------- /src/Sample3/Images/t9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/Images/t9.png -------------------------------------------------------------------------------- /src/Sample3/Images/tx.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/Images/tx.jpeg -------------------------------------------------------------------------------- /src/Sample3/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | using System.Windows.Controls; 8 | using System.Windows.Data; 9 | using System.Windows.Documents; 10 | using System.Windows.Input; 11 | using System.Windows.Media; 12 | using System.Windows.Media.Imaging; 13 | using System.Windows.Navigation; 14 | using System.Windows.Shapes; 15 | using UiDeignApp2.ViewModel; 16 | 17 | namespace UiDeignApp2 18 | { 19 | /// 20 | /// MainWindow.xaml 的交互逻辑 21 | /// 22 | public partial class MainWindow : Window 23 | { 24 | public MainWindow() 25 | { 26 | InitializeComponent(); 27 | this.DataContext = new MainViewModel(); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/Sample3/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Sample3/bin/Debug/UiDeignApp2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/bin/Debug/UiDeignApp2.exe -------------------------------------------------------------------------------- /src/Sample3/bin/Debug/UiDeignApp2.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Sample3/bin/Debug/UiDeignApp2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/bin/Debug/UiDeignApp2.pdb -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/.NETFramework,Version=v4.5.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.5", FrameworkDisplayName = ".NET Framework 4.5")] 5 | -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/Sample3.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c2bb65475506d3b7daaf32a401f747247325cf35 2 | -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/Sample3.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/obj/Debug/Sample3.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/Sample3.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/obj/Debug/Sample3.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/UiDeignApp2.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/obj/Debug/UiDeignApp2.Properties.Resources.resources -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/UiDeignApp2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/obj/Debug/UiDeignApp2.exe -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/UiDeignApp2.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/obj/Debug/UiDeignApp2.g.resources -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/UiDeignApp2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample3/obj/Debug/UiDeignApp2.pdb -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/UiDeignApp2_Content.g.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("images/t4.png")] 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/UiDeignApp2_Content.g.i.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("images/t4.png")] 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/UiDeignApp2_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | UiDeignApp2 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\zhouh\Desktop\WPFUI\src\Sample3\obj\Debug\ 8 | UiDeignApp2 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\zhouh\Desktop\WPFUI\src\Sample3\App.xaml 13 | 11151548125 14 | 11357628659 15 | 8-212983263 16 | 13-1142990016 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/UiDeignApp2_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | UiDeignApp2 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\zhouh\Desktop\WPFUI\src\Sample3\obj\Debug\ 8 | UiDeignApp2 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\zhouh\Desktop\WPFUI\src\Sample3\App.xaml 13 | 11151548125 14 | 11357628659 15 | 8-212983263 16 | 13-1142990016 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/UiDeignApp2_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | C:\Users\zhouh\Desktop\WPFUI\src\Sample3\obj\Debug\GeneratedInternalTypeHelper.g.i.cs 2 | 3 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample3\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/Sample3/obj/Debug/UiDeignApp2_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | C:\Users\zhouh\Desktop\WPFUI\src\Sample3\obj\Debug\GeneratedInternalTypeHelper.g.cs 2 | 3 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample3\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/Sample4/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Sample4/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Sample4/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace UiDesign 10 | { 11 | /// 12 | /// App.xaml 的交互逻辑 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Sample4/Fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample4/Fonts/iconfont.ttf -------------------------------------------------------------------------------- /src/Sample4/Images/Img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample4/Images/Img.jpg -------------------------------------------------------------------------------- /src/Sample4/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | using System.Windows.Controls; 8 | using System.Windows.Data; 9 | using System.Windows.Documents; 10 | using System.Windows.Input; 11 | using System.Windows.Media; 12 | using System.Windows.Media.Imaging; 13 | using System.Windows.Navigation; 14 | using System.Windows.Shapes; 15 | using UiDesign.ViewModel; 16 | 17 | namespace UiDesign 18 | { 19 | /// 20 | /// MainWindow.xaml 的交互逻辑 21 | /// 22 | public partial class MainWindow : Window 23 | { 24 | public MainWindow() 25 | { 26 | InitializeComponent(); 27 | this.DataContext = new MainViewModel(); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/Sample4/ModuleInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace UiDesign 8 | { 9 | public class ModuleInfo 10 | { 11 | public string IconFont { get; set; } 12 | 13 | public string Title { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Sample4/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace UiDesign.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/Sample4/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Sample4/UserModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace UiDesign 8 | { 9 | public class UserModel 10 | { 11 | public string Name { get; set; } 12 | 13 | public string Email { get; set; } 14 | 15 | public string Address { get; set; } 16 | 17 | public string BackColor { get; set; } 18 | 19 | public string Status { get; set; } 20 | 21 | public string UserType { get; set; } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/Sample4/bin/Debug/UiDesign.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample4/bin/Debug/UiDesign.exe -------------------------------------------------------------------------------- /src/Sample4/bin/Debug/UiDesign.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Sample4/bin/Debug/UiDesign.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample4/bin/Debug/UiDesign.pdb -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/.NETFramework,Version=v4.5.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.5", FrameworkDisplayName = ".NET Framework 4.5")] 5 | -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample4/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/Sample4.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5fcd2faa5c5d3cd0c2dcdb19faa3ad0712c36cd8 2 | -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/Sample4.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample4/obj/Debug/Sample4.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/Sample4.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample4/obj/Debug/Sample4.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample4/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample4/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample4/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/UiDesign.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample4/obj/Debug/UiDesign.Properties.Resources.resources -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/UiDesign.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample4/obj/Debug/UiDesign.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/UiDesign.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample4/obj/Debug/UiDesign.exe -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/UiDesign.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample4/obj/Debug/UiDesign.g.resources -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/UiDesign.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample4/obj/Debug/UiDesign.pdb -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/UiDesign_Content.g.i.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("images/img.jpg")] 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/UiDesign_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | UiDesign 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\zhouh\Desktop\WPFUI\src\Sample4\obj\Debug\ 8 | UiDesign 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\zhouh\Desktop\WPFUI\src\Sample4\App.xaml 13 | 11151548125 14 | 15 | 9-637818435 16 | 13-1142990016 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/UiDesign_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | UiDesign 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\zhouh\Desktop\WPFUI\src\Sample4\obj\Debug\ 8 | UiDesign 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\zhouh\Desktop\WPFUI\src\Sample4\App.xaml 13 | 11151548125 14 | 15 | 9-637818435 16 | 13-1142990016 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/UiDesign_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | C:\Users\zhouh\Desktop\WPFUI\src\Sample4\obj\Debug\GeneratedInternalTypeHelper.g.i.cs 2 | 3 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample4\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/Sample4/obj/Debug/UiDesign_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample4\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/Sample5/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Sample5/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace MetroApp 10 | { 11 | /// 12 | /// App.xaml 的交互逻辑 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Sample5/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using MetroApp.ViewModel; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | using System.Windows.Controls; 9 | using System.Windows.Data; 10 | using System.Windows.Documents; 11 | using System.Windows.Input; 12 | using System.Windows.Media; 13 | using System.Windows.Media.Imaging; 14 | using System.Windows.Navigation; 15 | using System.Windows.Shapes; 16 | 17 | namespace MetroApp 18 | { 19 | /// 20 | /// MainWindow.xaml 的交互逻辑 21 | /// 22 | public partial class MainWindow : Window 23 | { 24 | public MainWindow() 25 | { 26 | InitializeComponent(); 27 | this.DataContext = new MainViewModel(); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/Sample5/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Sample5/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /src/Sample5/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/back.jpg -------------------------------------------------------------------------------- /src/Sample5/bin/Debug/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/bin/Debug/CommonServiceLocator.dll -------------------------------------------------------------------------------- /src/Sample5/bin/Debug/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/bin/Debug/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/Sample5/bin/Debug/GalaSoft.MvvmLight.Extras.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/bin/Debug/GalaSoft.MvvmLight.Extras.pdb -------------------------------------------------------------------------------- /src/Sample5/bin/Debug/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/bin/Debug/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/Sample5/bin/Debug/GalaSoft.MvvmLight.Platform.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/bin/Debug/GalaSoft.MvvmLight.Platform.pdb -------------------------------------------------------------------------------- /src/Sample5/bin/Debug/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/bin/Debug/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/Sample5/bin/Debug/GalaSoft.MvvmLight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/bin/Debug/GalaSoft.MvvmLight.pdb -------------------------------------------------------------------------------- /src/Sample5/bin/Debug/MaterialDesignColors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/bin/Debug/MaterialDesignColors.dll -------------------------------------------------------------------------------- /src/Sample5/bin/Debug/MaterialDesignColors.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/bin/Debug/MaterialDesignColors.pdb -------------------------------------------------------------------------------- /src/Sample5/bin/Debug/MaterialDesignThemes.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/bin/Debug/MaterialDesignThemes.Wpf.dll -------------------------------------------------------------------------------- /src/Sample5/bin/Debug/MaterialDesignThemes.Wpf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/bin/Debug/MaterialDesignThemes.Wpf.pdb -------------------------------------------------------------------------------- /src/Sample5/bin/Debug/MetroApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/bin/Debug/MetroApp.exe -------------------------------------------------------------------------------- /src/Sample5/bin/Debug/MetroApp.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Sample5/bin/Debug/MetroApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/bin/Debug/MetroApp.pdb -------------------------------------------------------------------------------- /src/Sample5/bin/Debug/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/bin/Debug/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/.NETFramework,Version=v4.5.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.5", FrameworkDisplayName = ".NET Framework 4.5")] 5 | -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/MetroApp.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/obj/Debug/MetroApp.Properties.Resources.resources -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/MetroApp.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/obj/Debug/MetroApp.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/MetroApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/obj/Debug/MetroApp.exe -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/MetroApp.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/obj/Debug/MetroApp.g.resources -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/MetroApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/obj/Debug/MetroApp.pdb -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/MetroApp_Content.g.i.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("back.jpg")] 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/MetroApp_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | MetroApp 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\zhouh\Desktop\WPFUI\src\Sample5\obj\Debug\ 8 | MetroApp 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\zhouh\Desktop\WPFUI\src\Sample5\App.xaml 13 | 11151548125 14 | 15 | 7235297389 16 | 70-1949879169 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/MetroApp_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | MetroApp 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\zhouh\Desktop\WPFUI\src\Sample5\obj\Debug\ 8 | MetroApp 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\zhouh\Desktop\WPFUI\src\Sample5\App.xaml 13 | 11151548125 14 | 15 | 7235297389 16 | 70-1949879169 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/MetroApp_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | C:\Users\zhouh\Desktop\WPFUI\src\Sample5\obj\Debug\GeneratedInternalTypeHelper.g.i.cs 2 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample5\App.xaml;; 3 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample5\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/MetroApp_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample5\App.xaml;; 3 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample5\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/Sample5.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/obj/Debug/Sample5.csproj.CopyComplete -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/Sample5.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9e44353cc7af918d042262c424ef6f15ab6115e9 2 | -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/Sample5.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/obj/Debug/Sample5.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/Sample5.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/obj/Debug/Sample5.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /src/Sample5/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample5/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /src/Sample5/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Sample6/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Sample6/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Sample6/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace IndustrialMaterials 10 | { 11 | /// 12 | /// App.xaml 的交互逻辑 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Sample6/DropMenu.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | using System.Windows.Controls; 8 | using System.Windows.Data; 9 | using System.Windows.Documents; 10 | using System.Windows.Input; 11 | using System.Windows.Media; 12 | using System.Windows.Media.Imaging; 13 | using System.Windows.Shapes; 14 | 15 | namespace IndustrialMaterials 16 | { 17 | /// 18 | /// DropMenu.xaml 的交互逻辑 19 | /// 20 | public partial class DropMenu : Window 21 | { 22 | public DropMenu() 23 | { 24 | InitializeComponent(); 25 | } 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/Sample6/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Sample6/bin/Debug/IndustrialMaterials.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/bin/Debug/IndustrialMaterials.exe -------------------------------------------------------------------------------- /src/Sample6/bin/Debug/IndustrialMaterials.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Sample6/bin/Debug/IndustrialMaterials.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/bin/Debug/IndustrialMaterials.pdb -------------------------------------------------------------------------------- /src/Sample6/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/demo.png -------------------------------------------------------------------------------- /src/Sample6/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/fonts/iconfont.ttf -------------------------------------------------------------------------------- /src/Sample6/images/buttonImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/images/buttonImage.png -------------------------------------------------------------------------------- /src/Sample6/images/centerImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/images/centerImage.png -------------------------------------------------------------------------------- /src/Sample6/images/drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/images/drop.png -------------------------------------------------------------------------------- /src/Sample6/images/img3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/images/img3d.png -------------------------------------------------------------------------------- /src/Sample6/images/leftImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/images/leftImage.png -------------------------------------------------------------------------------- /src/Sample6/images/leftImageSub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/images/leftImageSub.png -------------------------------------------------------------------------------- /src/Sample6/images/leftback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/images/leftback.png -------------------------------------------------------------------------------- /src/Sample6/images/rightImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/images/rightImage.png -------------------------------------------------------------------------------- /src/Sample6/images/timeback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/images/timeback.png -------------------------------------------------------------------------------- /src/Sample6/images/topImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/images/topImage.png -------------------------------------------------------------------------------- /src/Sample6/images/topback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/images/topback.png -------------------------------------------------------------------------------- /src/Sample6/images/vs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/images/vs.jpg -------------------------------------------------------------------------------- /src/Sample6/images/中部选择栏选中-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/images/中部选择栏选中-1.png -------------------------------------------------------------------------------- /src/Sample6/images/中部选择栏选中-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/images/中部选择栏选中-2.png -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/.NETFramework,Version=v4.5.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.5", FrameworkDisplayName = ".NET Framework 4.5")] 5 | -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/IndustrialMaterials.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/obj/Debug/IndustrialMaterials.Properties.Resources.resources -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/IndustrialMaterials.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5c3df7a8209bbb2bc9e46257fe41ff8df7c33df6 2 | -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/IndustrialMaterials.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/obj/Debug/IndustrialMaterials.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/IndustrialMaterials.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/obj/Debug/IndustrialMaterials.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/IndustrialMaterials.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/obj/Debug/IndustrialMaterials.exe -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/IndustrialMaterials.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/obj/Debug/IndustrialMaterials.g.resources -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/IndustrialMaterials.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/obj/Debug/IndustrialMaterials.pdb -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/IndustrialMaterials_Content.g.i.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("demo.png")] 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/IndustrialMaterials_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | IndustrialMaterials 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\zhouh\Desktop\WPFUI\src\Sample6\obj\Debug\ 8 | IndustrialMaterials 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\zhouh\Desktop\WPFUI\src\Sample6\App.xaml 13 | 1-1753198772 14 | 15 | 6-487597438 16 | 141737414579 17 | DropMenu.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/IndustrialMaterials_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | IndustrialMaterials 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\zhouh\Desktop\WPFUI\src\Sample6\obj\Debug\ 8 | IndustrialMaterials 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\zhouh\Desktop\WPFUI\src\Sample6\App.xaml 13 | 1-1753198772 14 | 15 | 6-487597438 16 | 141737414579 17 | DropMenu.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/IndustrialMaterials_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | C:\Users\zhouh\Desktop\WPFUI\src\Sample6\obj\Debug\GeneratedInternalTypeHelper.g.i.cs 2 | 3 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample6\DropMenu.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/IndustrialMaterials_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample6\DropMenu.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/Sample6.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/obj/Debug/Sample6.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /src/Sample6/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample6/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /src/Sample7/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Sample7/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/Sample7/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace WpfApp21 10 | { 11 | /// 12 | /// App.xaml 的交互逻辑 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Sample7/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | using System.Windows.Controls; 8 | using System.Windows.Data; 9 | using System.Windows.Documents; 10 | using System.Windows.Input; 11 | using System.Windows.Media; 12 | using System.Windows.Media.Imaging; 13 | using System.Windows.Navigation; 14 | using System.Windows.Shapes; 15 | 16 | namespace WpfApp21 17 | { 18 | /// 19 | /// MainWindow.xaml 的交互逻辑 20 | /// 21 | public partial class MainWindow : Window 22 | { 23 | public MainWindow() 24 | { 25 | InitializeComponent(); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/Sample7/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Sample7/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/background.jpg -------------------------------------------------------------------------------- /src/Sample7/bin/Debug/LiveCharts.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/bin/Debug/LiveCharts.Wpf.dll -------------------------------------------------------------------------------- /src/Sample7/bin/Debug/LiveCharts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/bin/Debug/LiveCharts.dll -------------------------------------------------------------------------------- /src/Sample7/bin/Debug/MaterialDesignColors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/bin/Debug/MaterialDesignColors.dll -------------------------------------------------------------------------------- /src/Sample7/bin/Debug/MaterialDesignColors.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/bin/Debug/MaterialDesignColors.pdb -------------------------------------------------------------------------------- /src/Sample7/bin/Debug/MaterialDesignThemes.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/bin/Debug/MaterialDesignThemes.Wpf.dll -------------------------------------------------------------------------------- /src/Sample7/bin/Debug/MaterialDesignThemes.Wpf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/bin/Debug/MaterialDesignThemes.Wpf.pdb -------------------------------------------------------------------------------- /src/Sample7/bin/Debug/WpfApp21.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/bin/Debug/WpfApp21.exe -------------------------------------------------------------------------------- /src/Sample7/bin/Debug/WpfApp21.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Sample7/bin/Debug/WpfApp21.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/bin/Debug/WpfApp21.pdb -------------------------------------------------------------------------------- /src/Sample7/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/iconfont.ttf -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/.NETFramework,Version=v4.5.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.5", FrameworkDisplayName = ".NET Framework 4.5")] 5 | -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/Sample7.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/obj/Debug/Sample7.csproj.CopyComplete -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/Sample7.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | edbf1f44c5b582de88564dcc6e26c393d4c8f54b 2 | -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/Sample7.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/obj/Debug/Sample7.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/Sample7.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/obj/Debug/Sample7.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/WpfApp21.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/obj/Debug/WpfApp21.Properties.Resources.resources -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/WpfApp21.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/obj/Debug/WpfApp21.csproj.CopyComplete -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/WpfApp21.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | eb01f8fa6e954f99b21b885074120b8fb86c0953 2 | -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/WpfApp21.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/obj/Debug/WpfApp21.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/WpfApp21.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/obj/Debug/WpfApp21.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/WpfApp21.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/obj/Debug/WpfApp21.exe -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/WpfApp21.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/obj/Debug/WpfApp21.g.resources -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/WpfApp21.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/obj/Debug/WpfApp21.pdb -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/WpfApp21_Content.g.i.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("background.jpg")] 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/WpfApp21_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | WpfApp21 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\zhouh\Desktop\WPFUI\src\Sample7\obj\Debug\ 8 | WpfApp21 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\zhouh\Desktop\WPFUI\src\Sample7\App.xaml 13 | 11151548125 14 | 15 | 6-1465360305 16 | 17525172020 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/WpfApp21_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | WpfApp21 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\zhouh\Desktop\WPFUI\src\Sample7\obj\Debug\ 8 | WpfApp21 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\zhouh\Desktop\WPFUI\src\Sample7\App.xaml 13 | 11151548125 14 | 15 | 6-1465360305 16 | 17525172020 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/WpfApp21_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 |  2 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample7\App.xaml;; 3 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample7\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/WpfApp21_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample7\App.xaml;; 3 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample7\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/Sample7/obj/Debug/界面设计.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample7/obj/Debug/界面设计.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Sample7/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Sample8/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Sample8/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Sample8/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace wof 10 | { 11 | /// 12 | /// App.xaml 的交互逻辑 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Sample8/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | using System.Windows.Controls; 8 | using System.Windows.Data; 9 | using System.Windows.Documents; 10 | using System.Windows.Input; 11 | using System.Windows.Media; 12 | using System.Windows.Media.Imaging; 13 | using System.Windows.Navigation; 14 | using System.Windows.Shapes; 15 | 16 | namespace wof 17 | { 18 | /// 19 | /// MainWindow.xaml 的交互逻辑 20 | /// 21 | public partial class MainWindow : Window 22 | { 23 | public MainWindow() 24 | { 25 | InitializeComponent(); 26 | } 27 | 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/Sample8/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace wof.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/Sample8/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Sample8/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/background.png -------------------------------------------------------------------------------- /src/Sample8/bin/Debug/wof.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/bin/Debug/wof.exe -------------------------------------------------------------------------------- /src/Sample8/bin/Debug/wof.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Sample8/bin/Debug/wof.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/bin/Debug/wof.pdb -------------------------------------------------------------------------------- /src/Sample8/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/iconfont.ttf -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/.NETFramework,Version=v4.5.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.5", FrameworkDisplayName = ".NET Framework 4.5")] 5 | -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/Sample8.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f2670300f3ebbb6da13242585804fd33ea90cae6 2 | -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/Sample8.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/obj/Debug/Sample8.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/Sample8.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/obj/Debug/Sample8.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/wof.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/obj/Debug/wof.Properties.Resources.resources -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/wof.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | abc3553b3007a293c2e87df8ef5bca267da8db60 2 | -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/wof.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\zhouh\source\repos\网易云界面\wof\bin\Debug\wof.exe.config 2 | C:\Users\zhouh\source\repos\网易云界面\wof\bin\Debug\wof.exe 3 | C:\Users\zhouh\source\repos\网易云界面\wof\bin\Debug\wof.pdb 4 | C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof.csprojAssemblyReference.cache 5 | C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\MainWindow.g.cs 6 | C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\App.g.cs 7 | C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof_MarkupCompile.cache 8 | C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof_MarkupCompile.lref 9 | C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\MainWindow.baml 10 | C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof.g.resources 11 | C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof.Properties.Resources.resources 12 | C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof.csproj.GenerateResource.cache 13 | C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof.csproj.CoreCompileInputs.cache 14 | C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof.exe 15 | C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof.pdb 16 | -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/wof.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/obj/Debug/wof.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/wof.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/obj/Debug/wof.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/wof.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/obj/Debug/wof.exe -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/wof.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/obj/Debug/wof.g.resources -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/wof.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/obj/Debug/wof.pdb -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/wof_Content.g.i.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("background.png")] 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/wof_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | wof 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\zhouh\Desktop\WPFUI\src\Sample8\obj\Debug\ 8 | wof 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\zhouh\Desktop\WPFUI\src\Sample8\App.xaml 13 | 11151548125 14 | 15 | 6-1465360305 16 | 13-1142990016 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/wof_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | wof 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\zhouh\Desktop\WPFUI\src\Sample8\obj\Debug\ 8 | wof 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\zhouh\Desktop\WPFUI\src\Sample8\App.xaml 13 | 11151548125 14 | 15 | 6-1465360305 16 | 13-1142990016 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/wof_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample8\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/wof_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\zhouh\Desktop\WPFUI\src\Sample8\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/网易云界面.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9dec5f9dfeb8044145287177f1e3509d91b9a6ca 2 | -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/网易云界面.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/obj/Debug/网易云界面.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /src/Sample8/obj/Debug/网易云界面.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/Sample8/obj/Debug/网易云界面.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/packages/CommonServiceLocator.2.0.2/CommonServiceLocator.2.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/CommonServiceLocator.2.0.2/CommonServiceLocator.2.0.2.nupkg -------------------------------------------------------------------------------- /src/packages/CommonServiceLocator.2.0.2/lib/net40/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/CommonServiceLocator.2.0.2/lib/net40/CommonServiceLocator.dll -------------------------------------------------------------------------------- /src/packages/CommonServiceLocator.2.0.2/lib/net45/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/CommonServiceLocator.2.0.2/lib/net45/CommonServiceLocator.dll -------------------------------------------------------------------------------- /src/packages/CommonServiceLocator.2.0.2/lib/net47/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/CommonServiceLocator.2.0.2/lib/net47/CommonServiceLocator.dll -------------------------------------------------------------------------------- /src/packages/CommonServiceLocator.2.0.2/lib/netcoreapp1.0/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/CommonServiceLocator.2.0.2/lib/netcoreapp1.0/CommonServiceLocator.dll -------------------------------------------------------------------------------- /src/packages/CommonServiceLocator.2.0.2/lib/netstandard1.0/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/CommonServiceLocator.2.0.2/lib/netstandard1.0/CommonServiceLocator.dll -------------------------------------------------------------------------------- /src/packages/CommonServiceLocator.2.0.2/lib/netstandard2.0/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/CommonServiceLocator.2.0.2/lib/netstandard2.0/CommonServiceLocator.dll -------------------------------------------------------------------------------- /src/packages/LiveCharts.0.9.7/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/LiveCharts.0.9.7/.signature.p7s -------------------------------------------------------------------------------- /src/packages/LiveCharts.0.9.7/LiveCharts.0.9.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/LiveCharts.0.9.7/LiveCharts.0.9.7.nupkg -------------------------------------------------------------------------------- /src/packages/LiveCharts.0.9.7/lib/net40/LiveCharts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/LiveCharts.0.9.7/lib/net40/LiveCharts.dll -------------------------------------------------------------------------------- /src/packages/LiveCharts.0.9.7/lib/net40/LiveCharts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/LiveCharts.0.9.7/lib/net40/LiveCharts.pdb -------------------------------------------------------------------------------- /src/packages/LiveCharts.0.9.7/lib/net45/LiveCharts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/LiveCharts.0.9.7/lib/net45/LiveCharts.dll -------------------------------------------------------------------------------- /src/packages/LiveCharts.0.9.7/lib/net45/LiveCharts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/LiveCharts.0.9.7/lib/net45/LiveCharts.pdb -------------------------------------------------------------------------------- /src/packages/LiveCharts.0.9.7/lib/portable-net45+win8+wp8/LiveCharts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/LiveCharts.0.9.7/lib/portable-net45+win8+wp8/LiveCharts.dll -------------------------------------------------------------------------------- /src/packages/LiveCharts.0.9.7/lib/portable-net45+win8+wp8/LiveCharts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/LiveCharts.0.9.7/lib/portable-net45+win8+wp8/LiveCharts.pdb -------------------------------------------------------------------------------- /src/packages/LiveCharts.0.9.7/readme.txt: -------------------------------------------------------------------------------- 1 | ================================== 2 | <<<<<<<<<<< IMPORTANT >>>>>>>>>>>> 3 | ================================== 4 | 5 | LiveCharts is now multipatform (at least the design). 6 | 7 | So this package contains nothing but the core of the library, 8 | you might also need to install the desired platform. 9 | 10 | For example if using wpf you must also install the wpf package. 11 | 12 | ------------------------------------ 13 | > Install-Package LiveCharts.Wpf 14 | ------------------------------------ 15 | 16 | For future updates, you will only need to update LiveCharts.Wpf (or any other platform) 17 | forget about the core, all the platforms packages will have a dependency to core. 18 | 19 | ------------------------------------ 20 | > Update-Package LiveCharts.Wpf 21 | ------------------------------------ 22 | 23 | Happy coding! -------------------------------------------------------------------------------- /src/packages/LiveCharts.Wpf.0.9.7/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/LiveCharts.Wpf.0.9.7/.signature.p7s -------------------------------------------------------------------------------- /src/packages/LiveCharts.Wpf.0.9.7/LiveCharts.Wpf.0.9.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/LiveCharts.Wpf.0.9.7/LiveCharts.Wpf.0.9.7.nupkg -------------------------------------------------------------------------------- /src/packages/LiveCharts.Wpf.0.9.7/lib/net40/LiveCharts.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/LiveCharts.Wpf.0.9.7/lib/net40/LiveCharts.Wpf.dll -------------------------------------------------------------------------------- /src/packages/LiveCharts.Wpf.0.9.7/lib/net40/LiveCharts.Wpf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/LiveCharts.Wpf.0.9.7/lib/net40/LiveCharts.Wpf.pdb -------------------------------------------------------------------------------- /src/packages/LiveCharts.Wpf.0.9.7/lib/net45/LiveCharts.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/LiveCharts.Wpf.0.9.7/lib/net45/LiveCharts.Wpf.dll -------------------------------------------------------------------------------- /src/packages/LiveCharts.Wpf.0.9.7/lib/net45/LiveCharts.Wpf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/LiveCharts.Wpf.0.9.7/lib/net45/LiveCharts.Wpf.pdb -------------------------------------------------------------------------------- /src/packages/LiveCharts.Wpf.0.9.7/tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $DTE.ItemOperations.Navigate("https://lvcharts.net/thanks/wpf") -------------------------------------------------------------------------------- /src/packages/MaterialDesignColors.1.2.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MaterialDesignColors.1.2.0/.signature.p7s -------------------------------------------------------------------------------- /src/packages/MaterialDesignColors.1.2.0/MaterialDesignColors.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MaterialDesignColors.1.2.0/MaterialDesignColors.1.2.0.nupkg -------------------------------------------------------------------------------- /src/packages/MaterialDesignColors.1.2.0/lib/net45/MaterialDesignColors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MaterialDesignColors.1.2.0/lib/net45/MaterialDesignColors.dll -------------------------------------------------------------------------------- /src/packages/MaterialDesignColors.1.2.0/lib/net45/MaterialDesignColors.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MaterialDesignColors.1.2.0/lib/net45/MaterialDesignColors.pdb -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MaterialDesignThemes.2.6.0/.signature.p7s -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/MaterialDesignThemes.2.6.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MaterialDesignThemes.2.6.0/MaterialDesignThemes.2.6.0.nupkg -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/lib/net45/MaterialDesignThemes.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MaterialDesignThemes.2.6.0/lib/net45/MaterialDesignThemes.Wpf.dll -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/lib/net45/MaterialDesignThemes.Wpf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MaterialDesignThemes.2.6.0/lib/net45/MaterialDesignThemes.Wpf.pdb -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/BaseTheme.cs: -------------------------------------------------------------------------------- 1 | namespace MaterialDesignThemes.Wpf 2 | { 3 | public enum BaseTheme 4 | { 5 | Inherit, 6 | Light, 7 | Dark 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/ButtonAssist.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace MaterialDesignThemes.Wpf 4 | { 5 | /// 6 | /// Helper properties for working with for make round corner. 7 | /// 8 | public static class ButtonAssist 9 | { 10 | /// 11 | /// Controls the corner radius of the surrounding box. 12 | /// 13 | public static readonly DependencyProperty CornerRadiusProperty = DependencyProperty.RegisterAttached( 14 | "CornerRadius", typeof(CornerRadius), typeof(ButtonAssist), new PropertyMetadata(new CornerRadius(2.0))); 15 | 16 | public static void SetCornerRadius(DependencyObject element, CornerRadius value) 17 | { 18 | element.SetValue(CornerRadiusProperty, value); 19 | } 20 | 21 | public static CornerRadius GetCornerRadius(DependencyObject element) 22 | { 23 | return (CornerRadius)element.GetValue(CornerRadiusProperty); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/ClockChoiceMadeEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace MaterialDesignThemes.Wpf 4 | { 5 | public delegate void ClockChoiceMadeEventHandler(object sender, ClockChoiceMadeEventArgs e); 6 | 7 | public class ClockChoiceMadeEventArgs : RoutedEventArgs 8 | { 9 | private readonly ClockDisplayMode _displayMode; 10 | 11 | public ClockChoiceMadeEventArgs(ClockDisplayMode displayMode) 12 | { 13 | _displayMode = displayMode; 14 | } 15 | 16 | public ClockChoiceMadeEventArgs(ClockDisplayMode displayMode, RoutedEvent routedEvent) : base(routedEvent) 17 | { 18 | _displayMode = displayMode; 19 | } 20 | 21 | public ClockChoiceMadeEventArgs(ClockDisplayMode displayMode, RoutedEvent routedEvent, object source) : base(routedEvent, source) 22 | { 23 | _displayMode = displayMode; 24 | } 25 | 26 | public ClockDisplayMode Mode 27 | { 28 | get { return _displayMode; } 29 | } 30 | } 31 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/ColorZoneAssist.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace MaterialDesignThemes.Wpf 4 | { 5 | public static class ColorZoneAssist 6 | { 7 | public static readonly DependencyProperty ModeProperty = DependencyProperty.RegisterAttached( 8 | "Mode", typeof(ColorZoneMode), typeof(ColorZoneAssist), new FrameworkPropertyMetadata(default(ColorZoneMode), FrameworkPropertyMetadataOptions.Inherits)); 9 | 10 | public static void SetMode(DependencyObject element, ColorZoneMode value) 11 | { 12 | element.SetValue(ModeProperty, value); 13 | } 14 | 15 | public static ColorZoneMode GetMode(DependencyObject element) 16 | { 17 | return (ColorZoneMode)element.GetValue(ModeProperty); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/BooleanConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Globalization; 4 | using System.Windows.Data; 5 | 6 | namespace MaterialDesignThemes.Wpf.Converters 7 | { 8 | public class BooleanConverter : IValueConverter 9 | { 10 | public BooleanConverter(T trueValue, T falseValue) 11 | { 12 | TrueValue = trueValue; 13 | FalseValue = falseValue; 14 | } 15 | 16 | public T TrueValue { get; set; } 17 | public T FalseValue { get; set; } 18 | 19 | public virtual object Convert(object value, Type targetType, object parameter, CultureInfo culture) 20 | { 21 | return value is bool boolValue && boolValue ? TrueValue : FalseValue; 22 | } 23 | 24 | public virtual object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 25 | { 26 | return value is T tValue && EqualityComparer.Default.Equals(tValue, TrueValue); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace MaterialDesignThemes.Wpf.Converters 4 | { 5 | public sealed class BooleanToVisibilityConverter : BooleanConverter 6 | { 7 | public BooleanToVisibilityConverter() : 8 | base(Visibility.Visible, Visibility.Collapsed) 9 | { } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/BrushRoundConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Data; 4 | using System.Windows.Media; 5 | 6 | namespace MaterialDesignThemes.Wpf.Converters 7 | { 8 | public class BrushRoundConverter : IValueConverter 9 | { 10 | public Brush HighValue { get; set; } = Brushes.White; 11 | 12 | public Brush LowValue { get; set; } = Brushes.Black; 13 | 14 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 15 | { 16 | var solidColorBrush = value as SolidColorBrush; 17 | if (solidColorBrush == null) return null; 18 | 19 | var color = solidColorBrush.Color; 20 | 21 | var brightness = 0.3 * color.R + 0.59 * color.G + 0.11 * color.B; 22 | 23 | return brightness < 123 ? LowValue : HighValue; 24 | } 25 | 26 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 27 | { 28 | return Binding.DoNothing; 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/BrushToRadialGradientBrushConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows; 4 | using System.Windows.Data; 5 | using System.Windows.Media; 6 | 7 | namespace MaterialDesignThemes.Wpf.Converters 8 | { 9 | public class BrushToRadialGradientBrushConverter : IValueConverter 10 | { 11 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 12 | { 13 | var solidColorBrush = value as SolidColorBrush; 14 | if (solidColorBrush == null) return Binding.DoNothing; 15 | 16 | return new RadialGradientBrush(solidColorBrush.Color, Colors.Transparent) 17 | { 18 | Center = new Point(.5, .5), 19 | GradientOrigin = new Point(.5, .5), 20 | RadiusX = .75, 21 | RadiusY = .75, 22 | Opacity = .39 23 | }; 24 | } 25 | 26 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 27 | { 28 | return Binding.DoNothing; 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/CircularProgressBar/ArcSizeConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows; 4 | using System.Windows.Data; 5 | 6 | namespace MaterialDesignThemes.Wpf.Converters.CircularProgressBar 7 | { 8 | public class ArcSizeConverter : IValueConverter 9 | { 10 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 11 | { 12 | if (value is double && ((double)value > 0.0)) 13 | { 14 | return new Size((double)value / 2, (double)value / 2); 15 | } 16 | 17 | return new Point(); 18 | } 19 | 20 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 21 | { 22 | return Binding.DoNothing; 23 | } 24 | } 25 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/CircularProgressBar/LocalEx.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.Linq; 3 | 4 | namespace MaterialDesignThemes.Wpf.Converters.CircularProgressBar 5 | { 6 | internal static class LocalEx 7 | { 8 | public static double ExtractDouble(this object val) 9 | { 10 | var d = val as double? ?? double.NaN; 11 | return double.IsInfinity(d) ? double.NaN : d; 12 | } 13 | 14 | 15 | public static bool AnyNan(this IEnumerable vals) 16 | { 17 | return vals.Any(double.IsNaN); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/CircularProgressBar/RotateTransformCentreConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Data; 4 | 5 | namespace MaterialDesignThemes.Wpf.Converters.CircularProgressBar 6 | { 7 | public class RotateTransformCentreConverter : IValueConverter 8 | { 9 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 10 | { 11 | //value == actual width 12 | return (double) value/2; 13 | } 14 | 15 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 16 | { 17 | return Binding.DoNothing; 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/CircularProgressBar/StartPointConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows; 4 | using System.Windows.Data; 5 | 6 | namespace MaterialDesignThemes.Wpf.Converters.CircularProgressBar 7 | { 8 | public class StartPointConverter : IValueConverter 9 | { 10 | [Obsolete] 11 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 12 | { 13 | if (value is double && ((double) value > 0.0)) 14 | { 15 | return new Point((double)value / 2, 0); 16 | } 17 | 18 | return new Point(); 19 | } 20 | 21 | [Obsolete] 22 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 23 | { 24 | return Binding.DoNothing; 25 | } 26 | 27 | } 28 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/ClockLineConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Data; 4 | using System.Windows.Markup; 5 | 6 | namespace MaterialDesignThemes.Wpf.Converters 7 | { 8 | public class ClockLineConverter : MarkupExtension, IValueConverter 9 | { 10 | public ClockDisplayMode DisplayMode { get; set; } 11 | 12 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 13 | { 14 | var time = (DateTime) value; 15 | 16 | return DisplayMode == ClockDisplayMode.Hours 17 | ? ((time.Hour > 13) ? time.Hour - 12 : time.Hour)*(360/12) 18 | : DisplayMode == ClockDisplayMode.Minutes 19 | ? (time.Minute == 0 ? 60 : time.Minute)*(360/60) 20 | : (time.Second == 0 ? 60 : time.Second)*(360/60); 21 | } 22 | 23 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 24 | { 25 | return Binding.DoNothing; 26 | } 27 | 28 | public override object ProvideValue(IServiceProvider serviceProvider) 29 | { 30 | return this; 31 | } 32 | } 33 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/EqualityToVisibilityConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows; 4 | using System.Windows.Data; 5 | 6 | namespace MaterialDesignThemes.Wpf.Converters 7 | { 8 | public class EqualityToVisibilityConverter : IValueConverter 9 | { 10 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 11 | { 12 | if (value != null && value.Equals(parameter)) return Visibility.Visible; 13 | 14 | return Visibility.Collapsed; 15 | } 16 | 17 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 18 | { 19 | throw new NotImplementedException(); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/HintProxyFabricConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Controls; 4 | using System.Windows.Data; 5 | 6 | namespace MaterialDesignThemes.Wpf.Converters 7 | { 8 | /// 9 | /// Converter for control. Can be extended by method. 10 | /// 11 | public class HintProxyFabricConverter : IValueConverter 12 | { 13 | private static readonly Lazy _instance = new Lazy(); 14 | 15 | public static HintProxyFabricConverter Instance => _instance.Value; 16 | 17 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 18 | { 19 | return HintProxyFabric.Get(value as Control); 20 | } 21 | 22 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 23 | { 24 | return Binding.DoNothing; 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/HsbLinearGradientConverter.cs: -------------------------------------------------------------------------------- 1 | using MaterialDesignColors.ColorManipulation; 2 | using System; 3 | using System.Globalization; 4 | using System.Windows.Data; 5 | using System.Windows.Media; 6 | 7 | namespace MaterialDesignThemes.Wpf.Converters 8 | { 9 | public class HsbLinearGradientConverter : IValueConverter 10 | { 11 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 12 | { 13 | var v = (double)value; 14 | 15 | return new LinearGradientBrush(Colors.White, new Hsb(v, 1, 1).ToColor(), 0); 16 | } 17 | 18 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 19 | { 20 | throw new NotImplementedException(); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/NotConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Data; 4 | 5 | namespace MaterialDesignThemes.Wpf.Converters 6 | { 7 | public class NotConverter : IValueConverter 8 | { 9 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 10 | { 11 | return !(value as bool?) ?? !bool.Parse(value.ToString()); 12 | } 13 | 14 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 15 | { 16 | return !(value as bool?) ?? !bool.Parse(value.ToString()); 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/NotZeroConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Data; 4 | 5 | namespace MaterialDesignThemes.Wpf.Converters 6 | { 7 | public class NotZeroConverter : IValueConverter 8 | { 9 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 10 | { 11 | if (double.TryParse((value ?? "").ToString(), out double val)) 12 | { 13 | return Math.Abs(val) > 0.0; 14 | } 15 | return null; 16 | } 17 | 18 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 19 | { 20 | return Binding.DoNothing; 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/NotZeroToVisibilityConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows; 4 | using System.Windows.Data; 5 | 6 | namespace MaterialDesignThemes.Wpf.Converters 7 | { 8 | public class NotZeroToVisibilityConverter : IValueConverter 9 | { 10 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 11 | { 12 | double val; 13 | double.TryParse((value ?? "").ToString(), out val); 14 | 15 | return Math.Abs(val) > 0.0 ? Visibility.Visible : Visibility.Collapsed; 16 | } 17 | 18 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 19 | { 20 | return Binding.DoNothing; 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/NullToVisibilityConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows; 4 | using System.Windows.Data; 5 | 6 | namespace MaterialDesignThemes.Wpf.Converters 7 | { 8 | public class NullableToVisibilityConverter : IValueConverter 9 | { 10 | public Visibility NullValue { get; set; } = Visibility.Collapsed; 11 | public Visibility NotNullValue { get; set; } = Visibility.Visible; 12 | 13 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 14 | { 15 | return value == null ? NullValue : NotNullValue; 16 | } 17 | 18 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 19 | { 20 | return Binding.DoNothing; 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/NullableDateTimeToCurrentDateConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Data; 4 | 5 | namespace MaterialDesignThemes.Wpf.Converters 6 | { 7 | public class NullableDateTimeToCurrentDateConverter : IValueConverter 8 | { 9 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 10 | { 11 | if (value is DateTime) 12 | return value; 13 | return DateTime.Now.Date; 14 | } 15 | 16 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 17 | { 18 | return value; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/SnackbarMessageTypeConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.ComponentModel; 3 | using System.Globalization; 4 | 5 | namespace MaterialDesignThemes.Wpf.Converters 6 | { 7 | public class SnackbarMessageTypeConverter : TypeConverter 8 | { 9 | public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) 10 | { 11 | return sourceType == typeof(string) || base.CanConvertFrom(context, sourceType); 12 | } 13 | 14 | public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) 15 | { 16 | var s = value as string; 17 | if (s != null) 18 | { 19 | return new SnackbarMessage 20 | { 21 | Content = s 22 | }; 23 | } 24 | 25 | return base.ConvertFrom(context, culture, value); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/TextFieldHintVisibilityConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows; 4 | using System.Windows.Data; 5 | 6 | namespace MaterialDesignThemes.Wpf.Converters 7 | { 8 | public class TextFieldHintVisibilityConverter : IValueConverter 9 | { 10 | public Visibility IsEmptyValue { get; set; } = Visibility.Visible; 11 | public Visibility IsNotEmptyValue { get; set; } = Visibility.Hidden; 12 | 13 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 14 | { 15 | return string.IsNullOrEmpty((value ?? "").ToString()) ? IsEmptyValue : IsNotEmptyValue; 16 | } 17 | 18 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 19 | { 20 | return Binding.DoNothing; 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Converters/TimeToVisibilityConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows; 4 | using System.Windows.Data; 5 | using System.Windows.Markup; 6 | 7 | namespace MaterialDesignThemes.Wpf.Converters 8 | { 9 | public class TimeToVisibilityConverter: MarkupExtension, IValueConverter 10 | { 11 | public override object ProvideValue(IServiceProvider serviceProvider) 12 | { 13 | return this; 14 | } 15 | 16 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 17 | { 18 | var time = (DateTime)value; 19 | 20 | var isPm = ((time.Hour >= 13) || (time.Hour == 0)); 21 | 22 | return isPm ? Visibility.Visible : Visibility.Collapsed; 23 | } 24 | 25 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 26 | { 27 | return Binding.DoNothing; 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/CustomPopupPlacementCallbackHelper.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using System.Windows.Controls.Primitives; 3 | 4 | namespace MaterialDesignThemes.Wpf 5 | { 6 | public static class CustomPopupPlacementCallbackHelper 7 | { 8 | public static readonly CustomPopupPlacementCallback LargePopupCallback; 9 | 10 | static CustomPopupPlacementCallbackHelper() 11 | { 12 | LargePopupCallback = 13 | (size, targetSize, offset) => new[] {new CustomPopupPlacement(new Point(), PopupPrimaryAxis.Horizontal)}; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/DialogClosingEventHandler.cs: -------------------------------------------------------------------------------- 1 | namespace MaterialDesignThemes.Wpf 2 | { 3 | public delegate void DialogClosingEventHandler(object sender, DialogClosingEventArgs eventArgs); 4 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/DialogOpenedEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Windows; 3 | 4 | namespace MaterialDesignThemes.Wpf 5 | { 6 | public class DialogOpenedEventArgs : RoutedEventArgs 7 | { 8 | public DialogOpenedEventArgs(DialogSession session, RoutedEvent routedEvent) 9 | { 10 | if (session == null) throw new ArgumentNullException(nameof(session)); 11 | 12 | Session = session; 13 | RoutedEvent = routedEvent; 14 | } 15 | 16 | /// 17 | /// Allows interation with the current dialog session. 18 | /// 19 | public DialogSession Session { get; } 20 | } 21 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/DialogOpenedEventHandler.cs: -------------------------------------------------------------------------------- 1 | namespace MaterialDesignThemes.Wpf 2 | { 3 | public delegate void DialogOpenedEventHandler(object sender, DialogOpenedEventArgs eventArgs); 4 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/IThemeManager.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MaterialDesignThemes.Wpf 4 | { 5 | public interface IThemeManager 6 | { 7 | event EventHandler ThemeChanged; 8 | } 9 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Icon.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using System.Windows.Controls; 3 | 4 | namespace MaterialDesignThemes.Wpf 5 | { 6 | /// 7 | /// Displays an icon image/path, according to the specified name. 8 | /// 9 | /// 10 | /// All icons sourced from Material Design Icons Font - - in accordance of 11 | /// . 12 | /// 13 | public class Icon : Control 14 | { 15 | public static readonly DependencyProperty TypeProperty = DependencyProperty.Register( 16 | nameof(Type), typeof (IconType), typeof (Icon), new PropertyMetadata(default(IconType))); 17 | 18 | /// 19 | /// Gets or sets the name of icon being displayed. 20 | /// 21 | public IconType Type 22 | { 23 | get { return (IconType) GetValue(TypeProperty); } 24 | set { SetValue(TypeProperty, value); } 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/IconType.cs: -------------------------------------------------------------------------------- 1 | namespace MaterialDesignThemes.Wpf 2 | { 3 | /// 4 | /// List of available icons for use with . 5 | /// 6 | /// 7 | /// All icons sourced from Material Design Icons Font - - in accordance of 8 | /// . 9 | /// 10 | public enum IconType 11 | { 12 | AutoGeneratedDoNotAmend 13 | } 14 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/ListViewAssist.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace MaterialDesignThemes.Wpf 4 | { 5 | public static class ListViewAssist 6 | { 7 | public static readonly DependencyProperty ListViewItemPaddingProperty = DependencyProperty.RegisterAttached( 8 | "ListViewItemPadding", 9 | typeof(Thickness), 10 | typeof(ListViewAssist), 11 | new FrameworkPropertyMetadata(new Thickness(8, 8, 8, 8), FrameworkPropertyMetadataOptions.Inherits)); 12 | 13 | public static void SetListViewItemPadding(DependencyObject element, Thickness value) 14 | { 15 | element.SetValue(ListViewItemPaddingProperty, value); 16 | } 17 | 18 | public static Thickness GetListViewItemPadding(DependencyObject element) 19 | { 20 | return (Thickness)element.GetValue(ListViewItemPaddingProperty); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/MaterialDataGridTextColumn.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using System.Windows.Controls; 3 | 4 | namespace MaterialDesignThemes.Wpf 5 | { 6 | public class MaterialDataGridTextColumn : DataGridTextColumn 7 | { 8 | protected override object PrepareCellForEdit(FrameworkElement editingElement, RoutedEventArgs editingEventArgs) 9 | { 10 | var textBox = editingElement as TextBox; 11 | if (textBox != null) 12 | { 13 | textBox.MaxLength = MaxLength; 14 | textBox.SelectionStart = textBox.Text.Length; 15 | } 16 | 17 | editingElement.Focus(); 18 | 19 | return null; 20 | } 21 | 22 | /// 23 | /// Set the maximum length for the text field. 24 | /// 25 | /// Not a dprop, as is only applied once. 26 | public int MaxLength { get; set; } 27 | } 28 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/MessageQueueExtension.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Windows.Markup; 3 | 4 | namespace MaterialDesignThemes.Wpf 5 | { 6 | /// 7 | /// Provides shorthand to initialise a new for a . 8 | /// 9 | [MarkupExtensionReturnType(typeof(SnackbarMessageQueue))] 10 | public class MessageQueueExtension : MarkupExtension 11 | { 12 | public override object ProvideValue(IServiceProvider serviceProvider) 13 | { 14 | return new SnackbarMessageQueue(); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/PackIcon.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using ControlzEx; 3 | 4 | namespace MaterialDesignThemes.Wpf 5 | { 6 | /// 7 | /// Icon from the Material Design Icons project, . 8 | /// 9 | public class PackIcon : PackIconBase 10 | { 11 | static PackIcon() 12 | { 13 | DefaultStyleKeyProperty.OverrideMetadata(typeof(PackIcon), new FrameworkPropertyMetadata(typeof(PackIcon))); 14 | } 15 | 16 | public PackIcon() : base(PackIconDataFactory.Create) { } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Palette.cs: -------------------------------------------------------------------------------- 1 | using MaterialDesignColors; 2 | 3 | namespace MaterialDesignThemes.Wpf 4 | { 5 | /// 6 | /// Provides full information about a palette. 7 | /// 8 | public class Palette 9 | { 10 | public Palette(Swatch primarySwatch, Swatch accentSwatch, int primaryLightHueIndex, int primaryMidHueIndex, int primaryDarkHueIndex, int accentHueIndex) 11 | { 12 | PrimarySwatch = primarySwatch; 13 | AccentSwatch = accentSwatch; 14 | PrimaryLightHueIndex = primaryLightHueIndex; 15 | PrimaryMidHueIndex = primaryMidHueIndex; 16 | PrimaryDarkHueIndex = primaryDarkHueIndex; 17 | AccentHueIndex = accentHueIndex; 18 | } 19 | 20 | public Swatch PrimarySwatch { get; } 21 | 22 | public Swatch AccentSwatch { get; } 23 | 24 | public int PrimaryLightHueIndex { get; } 25 | 26 | public int PrimaryMidHueIndex { get; } 27 | 28 | public int PrimaryDarkHueIndex { get; } 29 | 30 | public int AccentHueIndex { get; } 31 | } 32 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/ScaleHost.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace MaterialDesignThemes.Wpf 4 | { 5 | /// 6 | /// Internal use only. 7 | /// 8 | public class ScaleHost : FrameworkElement 9 | { 10 | public static readonly DependencyProperty ScaleProperty = DependencyProperty.Register( 11 | "Scale", typeof(double), typeof(ScaleHost), new PropertyMetadata(0.0)); 12 | 13 | public double Scale 14 | { 15 | get { return (double) GetValue(ScaleProperty); } 16 | set { SetValue(ScaleProperty, value); } 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/ScrollViewerAssist.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using System.Windows.Controls; 3 | 4 | namespace MaterialDesignThemes.Wpf 5 | { 6 | internal static class ScrollViewerAssist 7 | { 8 | public static readonly DependencyProperty HorizontalOffsetProperty = DependencyProperty.RegisterAttached( 9 | "SyncHorizontalOffset", typeof(double), typeof(ScrollViewerAssist), new PropertyMetadata(default(double), OnSyncHorizontalOffsetChanged)); 10 | 11 | private static void OnSyncHorizontalOffsetChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) 12 | { 13 | var scrollViewer = d as ScrollViewer; 14 | scrollViewer?.ScrollToHorizontalOffset((double)e.NewValue); 15 | } 16 | 17 | public static void SetSyncHorizontalOffset(DependencyObject element, double value) 18 | { 19 | element.SetValue(HorizontalOffsetProperty, value); 20 | } 21 | 22 | public static double GetSyncHorizontalOffset(DependencyObject element) 23 | { 24 | return (double) element.GetValue(HorizontalOffsetProperty); 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/SnackbarMessageEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace MaterialDesignThemes.Wpf 4 | { 5 | public class SnackbarMessageEventArgs : RoutedEventArgs 6 | { 7 | public SnackbarMessageEventArgs(SnackbarMessage message) 8 | { 9 | Message = message; 10 | } 11 | 12 | public SnackbarMessageEventArgs(RoutedEvent routedEvent, SnackbarMessage message) : base(routedEvent) 13 | { 14 | Message = message; 15 | } 16 | 17 | public SnackbarMessageEventArgs(RoutedEvent routedEvent, object source, SnackbarMessage message) : base(routedEvent, source) 18 | { 19 | Message = message; 20 | } 21 | 22 | public SnackbarMessage Message { get; } 23 | } 24 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Spelling.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace MaterialDesignThemes.Wpf 4 | { 5 | public static class Spelling 6 | { 7 | public static ResourceKey SuggestionMenuItemStyleKey { get; } = new ComponentResourceKey(typeof(Spelling), ResourceKeyId.SpellingSuggestionMenuItemStyle); 8 | public static ResourceKey IgnoreAllMenuItemStyleKey { get; } = new ComponentResourceKey(typeof(Spelling), ResourceKeyId.SpellingIgnoreAllMenuItemStyle); 9 | public static ResourceKey NoSuggestionsMenuItemStyleKey { get; } = new ComponentResourceKey(typeof(Spelling), ResourceKeyId.SpellingNoSuggestionsMenuItemStyle); 10 | public static ResourceKey SeparatorStyleKey { get; } = new ComponentResourceKey(typeof(Spelling), ResourceKeyId.SpellingSeparatorStyle); 11 | } 12 | 13 | internal enum ResourceKeyId 14 | { 15 | SpellingSuggestionMenuItemStyle, 16 | SpellingIgnoreAllMenuItemStyle, 17 | SpellingNoSuggestionsMenuItemStyle, 18 | SpellingSeparatorStyle, 19 | } 20 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/StringExtensions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Linq; 4 | 5 | namespace MaterialDesignThemes.Wpf 6 | { 7 | internal static class StringExtensions 8 | { 9 | public static string ToTitleCase(this string text, CultureInfo culture, string separator = " ") 10 | { 11 | TextInfo textInfo = culture.TextInfo; 12 | 13 | string lowerText = textInfo.ToLower(text); 14 | string[] words = lowerText.Split(new[] { separator }, StringSplitOptions.None); 15 | 16 | return String.Join(separator, words.Select(v => textInfo.ToTitleCase(v))); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/ThemeChangedEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Windows; 3 | 4 | namespace MaterialDesignThemes.Wpf 5 | { 6 | public class ThemeChangedEventArgs : EventArgs 7 | { 8 | public ThemeChangedEventArgs(ResourceDictionary resourceDictionary, ITheme oldTheme, ITheme newTheme) 9 | { 10 | ResourceDictionary = resourceDictionary; 11 | OldTheme = oldTheme; 12 | NewTheme = newTheme; 13 | } 14 | 15 | public ResourceDictionary ResourceDictionary { get; } 16 | public ITheme NewTheme { get; } 17 | public ITheme OldTheme { get; } 18 | } 19 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/ToolTipAssist.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using System.Windows.Controls.Primitives; 3 | 4 | namespace MaterialDesignThemes.Wpf 5 | { 6 | public static class ToolTipAssist 7 | { 8 | public static CustomPopupPlacementCallback CustomPopupPlacementCallback => CustomPopupPlacementCallbackImpl; 9 | 10 | public static CustomPopupPlacement[] CustomPopupPlacementCallbackImpl(Size popupSize, Size targetSize, Point offset) 11 | { 12 | return new [] 13 | { 14 | new CustomPopupPlacement(new Point(targetSize.Width/2 - popupSize.Width/2, targetSize.Height + 14), PopupPrimaryAxis.Horizontal) 15 | }; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Transitions/ITransitionEffect.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using System.Windows.Media.Animation; 3 | 4 | namespace MaterialDesignThemes.Wpf.Transitions 5 | { 6 | public interface ITransitionEffect 7 | { 8 | Timeline Build(TSubject effectSubject) where TSubject : FrameworkElement, ITransitionEffectSubject; 9 | } 10 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Transitions/ITransitionEffectSubject.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MaterialDesignThemes.Wpf.Transitions 4 | { 5 | public interface ITransitionEffectSubject 6 | { 7 | string MatrixTransformName { get; } 8 | string RotateTransformName { get; } 9 | string ScaleTransformName { get; } 10 | string SkewTransformName { get; } 11 | string TranslateTransformName { get; } 12 | TimeSpan Offset { get; } 13 | } 14 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Transitions/ITransitionWipe.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace MaterialDesignThemes.Wpf.Transitions 4 | { 5 | public interface ITransitionWipe 6 | { 7 | void Wipe(TransitionerSlide fromSlide, TransitionerSlide toSlide, Point origin, IZIndexController zIndexController); 8 | } 9 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Transitions/IZIndexController.cs: -------------------------------------------------------------------------------- 1 | namespace MaterialDesignThemes.Wpf.Transitions 2 | { 3 | public interface IZIndexController 4 | { 5 | void Stack(params TransitionerSlide[] highestToLowest); 6 | } 7 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Transitions/SlideDirection.cs: -------------------------------------------------------------------------------- 1 | namespace MaterialDesignThemes.Wpf.Transitions 2 | { 3 | public enum SlideDirection { Left, Right, Up, Down } 4 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Transitions/TransitionEffectBase.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using System.Windows.Media.Animation; 3 | 4 | namespace MaterialDesignThemes.Wpf.Transitions 5 | { 6 | public abstract class TransitionEffectBase : FrameworkElement, ITransitionEffect 7 | { 8 | public abstract Timeline Build(TSubject effectSubject) where TSubject : FrameworkElement, ITransitionEffectSubject; 9 | } 10 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Transitions/TransitionEffectKind.cs: -------------------------------------------------------------------------------- 1 | namespace MaterialDesignThemes.Wpf.Transitions 2 | { 3 | public enum TransitionEffectKind 4 | { 5 | None, 6 | ExpandIn, 7 | FadeIn, 8 | SlideInFromLeft, 9 | SlideInFromTop, 10 | SlideInFromRight, 11 | SlideInFromBottom 12 | } 13 | } -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.2.6.0/src/net45/Transitions/TransitionerSlideState.cs: -------------------------------------------------------------------------------- 1 | namespace MaterialDesignThemes.Wpf.Transitions 2 | { 3 | public enum TransitionerSlideState 4 | { 5 | None, 6 | Current, 7 | Previous, 8 | } 9 | } -------------------------------------------------------------------------------- /src/packages/MvvmLight.5.4.1.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLight.5.4.1.1/.signature.p7s -------------------------------------------------------------------------------- /src/packages/MvvmLight.5.4.1.1/Content/ViewModel/MainViewModel.cs.pp: -------------------------------------------------------------------------------- 1 | using GalaSoft.MvvmLight; 2 | 3 | namespace $rootnamespace$.ViewModel 4 | { 5 | /// 6 | /// This class contains properties that the main View can data bind to. 7 | /// 8 | /// Use the mvvminpc snippet to add bindable properties to this ViewModel. 9 | /// 10 | /// 11 | /// You can also use Blend to data bind with the tool's support. 12 | /// 13 | /// 14 | /// See http://www.galasoft.ch/mvvm 15 | /// 16 | /// 17 | public class MainViewModel : ViewModelBase 18 | { 19 | /// 20 | /// Initializes a new instance of the MainViewModel class. 21 | /// 22 | public MainViewModel() 23 | { 24 | ////if (IsInDesignMode) 25 | ////{ 26 | //// // Code runs in Blend --> create design time data. 27 | ////} 28 | ////else 29 | ////{ 30 | //// // Code runs "for real" 31 | ////} 32 | } 33 | } 34 | } -------------------------------------------------------------------------------- /src/packages/MvvmLight.5.4.1.1/MvvmLight.5.4.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLight.5.4.1.1/MvvmLight.5.4.1.1.nupkg -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/.signature.p7s -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/MvvmLightLibs.5.4.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/MvvmLightLibs.5.4.1.1.nupkg -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/SL5/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/SL5/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/SL5/GalaSoft.MvvmLight.Extras.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/SL5/GalaSoft.MvvmLight.Extras.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/SL5/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/SL5/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/SL5/GalaSoft.MvvmLight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/SL5/GalaSoft.MvvmLight.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/SL5/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/SL5/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.Extras.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.Extras.dll.mdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.Extras.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.Extras.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.Platform.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.Platform.dll.mdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.Platform.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.Platform.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.dll.mdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/monoandroid1/GalaSoft.MvvmLight.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/net35/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/net35/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/net35/GalaSoft.MvvmLight.Extras.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/net35/GalaSoft.MvvmLight.Extras.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/net35/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/net35/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/net35/GalaSoft.MvvmLight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/net35/GalaSoft.MvvmLight.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/net35/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/net35/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/net40/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/net40/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/net40/GalaSoft.MvvmLight.Extras.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/net40/GalaSoft.MvvmLight.Extras.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/net40/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/net40/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/net40/GalaSoft.MvvmLight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/net40/GalaSoft.MvvmLight.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/net40/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/net40/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/net45/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/net45/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/net45/GalaSoft.MvvmLight.Extras.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/net45/GalaSoft.MvvmLight.Extras.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/net45/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/net45/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/net45/GalaSoft.MvvmLight.Platform.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/net45/GalaSoft.MvvmLight.Platform.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/net45/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/net45/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/net45/GalaSoft.MvvmLight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/net45/GalaSoft.MvvmLight.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/net45/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/net45/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.Extras.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.Extras.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/uap10.0/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/uap10.0/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/uap10.0/GalaSoft.MvvmLight.Extras.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/uap10.0/GalaSoft.MvvmLight.Extras.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/uap10.0/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/uap10.0/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/uap10.0/GalaSoft.MvvmLight.Platform.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/uap10.0/GalaSoft.MvvmLight.Platform.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/uap10.0/GalaSoft.MvvmLight.Platform.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/uap10.0/GalaSoft.MvvmLight.Platform.pri -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/uap10.0/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/uap10.0/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/uap10.0/GalaSoft.MvvmLight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/uap10.0/GalaSoft.MvvmLight.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/windows81/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/windows81/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/windows81/GalaSoft.MvvmLight.Extras.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/windows81/GalaSoft.MvvmLight.Extras.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/windows81/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/windows81/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/windows81/GalaSoft.MvvmLight.Platform.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/windows81/GalaSoft.MvvmLight.Platform.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/windows81/GalaSoft.MvvmLight.Platform.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/windows81/GalaSoft.MvvmLight.Platform.pri -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/windows81/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/windows81/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/windows81/GalaSoft.MvvmLight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/windows81/GalaSoft.MvvmLight.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wp8/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wp8/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wp8/GalaSoft.MvvmLight.Extras.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wp8/GalaSoft.MvvmLight.Extras.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wp8/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wp8/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wp8/GalaSoft.MvvmLight.Platform.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wp8/GalaSoft.MvvmLight.Platform.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wp8/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wp8/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wp8/GalaSoft.MvvmLight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wp8/GalaSoft.MvvmLight.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wp8/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wp8/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wp81/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wp81/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wp81/GalaSoft.MvvmLight.Extras.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wp81/GalaSoft.MvvmLight.Extras.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wp81/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wp81/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wp81/GalaSoft.MvvmLight.Platform.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wp81/GalaSoft.MvvmLight.Platform.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wp81/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wp81/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wp81/GalaSoft.MvvmLight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wp81/GalaSoft.MvvmLight.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wp81/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wp81/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wpa81/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wpa81/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wpa81/GalaSoft.MvvmLight.Extras.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wpa81/GalaSoft.MvvmLight.Extras.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wpa81/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wpa81/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wpa81/GalaSoft.MvvmLight.Platform.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wpa81/GalaSoft.MvvmLight.Platform.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wpa81/GalaSoft.MvvmLight.Platform.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wpa81/GalaSoft.MvvmLight.Platform.pri -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wpa81/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wpa81/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/wpa81/GalaSoft.MvvmLight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/wpa81/GalaSoft.MvvmLight.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/xamarin.ios10/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/xamarin.ios10/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/xamarin.ios10/GalaSoft.MvvmLight.Extras.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/xamarin.ios10/GalaSoft.MvvmLight.Extras.pdb -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/xamarin.ios10/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/xamarin.ios10/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/xamarin.ios10/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/xamarin.ios10/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.4.1.1/lib/xamarin.ios10/GalaSoft.MvvmLight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenJigg/wpf-uidesign/50edbd02b51902ffd6b919568bb72356a7e02bc2/src/packages/MvvmLightLibs.5.4.1.1/lib/xamarin.ios10/GalaSoft.MvvmLight.pdb --------------------------------------------------------------------------------