├── .gitignore ├── LICENSE ├── README.md ├── SettingsUWP.sln └── SettingsUWP ├── .editorconfig ├── Activation ├── ActivationHandler.cs └── DefaultActivationHandler.cs ├── App.xaml ├── App.xaml.cs ├── Assets ├── Fonts │ └── FabMDL2.ttf ├── LargeTile.scale-100.png ├── LargeTile.scale-125.png ├── LargeTile.scale-150.png ├── LargeTile.scale-200.png ├── LargeTile.scale-400.png ├── LockScreenLogo.scale-200.png ├── Screenshots │ └── Screen_001.jpg ├── SettingTiles │ ├── Account.scale-100.png │ ├── Account.scale-125.png │ ├── Account.scale-150.png │ ├── Account.scale-200.png │ ├── Account.scale-400.png │ ├── Apps.scale-100.png │ ├── Apps.scale-125.png │ ├── Apps.scale-150.png │ ├── Apps.scale-200.png │ ├── Apps.scale-400.png │ ├── CortanaSearch.scale-100.png │ ├── CortanaSearch.scale-125.png │ ├── CortanaSearch.scale-150.png │ ├── CortanaSearch.scale-200.png │ ├── CortanaSearch.scale-400.png │ ├── Devices.scale-100.png │ ├── Devices.scale-125.png │ ├── Devices.scale-150.png │ ├── Devices.scale-200.png │ ├── Devices.scale-400.png │ ├── EaseAccess.scale-100.png │ ├── EaseAccess.scale-125.png │ ├── EaseAccess.scale-150.png │ ├── EaseAccess.scale-200.png │ ├── EaseAccess.scale-400.png │ ├── Gaming.scale-100.png │ ├── Gaming.scale-125.png │ ├── Gaming.scale-150.png │ ├── Gaming.scale-200.png │ ├── Gaming.scale-400.png │ ├── Network.scale-100.png │ ├── Network.scale-125.png │ ├── Network.scale-150.png │ ├── Network.scale-200.png │ ├── Network.scale-400.png │ ├── Personalization.scale-100.png │ ├── Personalization.scale-125.png │ ├── Personalization.scale-150.png │ ├── Personalization.scale-200.png │ ├── Personalization.scale-400.png │ ├── Phone.scale-100.png │ ├── Phone.scale-125.png │ ├── Phone.scale-150.png │ ├── Phone.scale-400.png │ ├── Placeholder.scale-100.png │ ├── Privacy.scale-100.png │ ├── Privacy.scale-125.png │ ├── Privacy.scale-150.png │ ├── Privacy.scale-200.png │ ├── Privacy.scale-400.png │ ├── RegionTime.scale-100.png │ ├── RegionTime.scale-125.png │ ├── RegionTime.scale-150.png │ ├── RegionTime.scale-200.png │ ├── RegionTime.scale-400.png │ ├── SecurityUpdate.scale-100.png │ ├── SecurityUpdate.scale-125.png │ ├── SecurityUpdate.scale-150.png │ ├── SecurityUpdate.scale-200.png │ ├── SecurityUpdate.scale-400.png │ ├── System.scale-100.png │ ├── System.scale-125.png │ ├── System.scale-150.png │ ├── System.scale-200.png │ └── System.scale-400.png ├── SmallTile.scale-100.png ├── SmallTile.scale-125.png ├── SmallTile.scale-150.png ├── SmallTile.scale-200.png ├── SmallTile.scale-400.png ├── SplashScreen.scale-100.png ├── SplashScreen.scale-125.png ├── SplashScreen.scale-150.png ├── SplashScreen.scale-200.png ├── SplashScreen.scale-400.png ├── Square150x150Logo.scale-100.png ├── Square150x150Logo.scale-125.png ├── Square150x150Logo.scale-150.png ├── Square150x150Logo.scale-200.png ├── Square150x150Logo.scale-400.png ├── Square44x44Logo.altform-lightunplated_targetsize-16.png ├── Square44x44Logo.altform-lightunplated_targetsize-24.png ├── Square44x44Logo.altform-lightunplated_targetsize-256.png ├── Square44x44Logo.altform-lightunplated_targetsize-32.png ├── Square44x44Logo.altform-lightunplated_targetsize-48.png ├── Square44x44Logo.altform-unplated_targetsize-16.png ├── Square44x44Logo.altform-unplated_targetsize-256.png ├── Square44x44Logo.altform-unplated_targetsize-32.png ├── Square44x44Logo.altform-unplated_targetsize-48.png ├── Square44x44Logo.scale-100.png ├── Square44x44Logo.scale-125.png ├── Square44x44Logo.scale-150.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.scale-400.png ├── Square44x44Logo.targetsize-16.png ├── Square44x44Logo.targetsize-24.png ├── Square44x44Logo.targetsize-24_altform-unplated.png ├── Square44x44Logo.targetsize-256.png ├── Square44x44Logo.targetsize-32.png ├── Square44x44Logo.targetsize-48.png ├── StoreLogo.backup.png ├── StoreLogo.scale-100.png ├── StoreLogo.scale-125.png ├── StoreLogo.scale-150.png ├── StoreLogo.scale-200.png ├── StoreLogo.scale-400.png ├── User │ ├── userprofile.scale-100.jpg │ ├── userprofile.scale-125.jpg │ ├── userprofile.scale-150.jpg │ ├── userprofile.scale-200.jpg │ └── userprofile.scale-400.jpg ├── Wide310x150Logo.scale-100.png ├── Wide310x150Logo.scale-125.png ├── Wide310x150Logo.scale-150.png ├── Wide310x150Logo.scale-200.png └── Wide310x150Logo.scale-400.png ├── Helpers ├── ResourceExtensions.cs └── Singleton.cs ├── Package.appxmanifest ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml ├── Services ├── ActivationService.cs ├── DataProvider.cs ├── NavigationServiceEx.cs └── UIService.cs ├── SettingsUWP.csproj ├── Strings └── en-us │ └── Resources.resw ├── ViewModels ├── HomeViewModel.cs ├── SettingGroup.cs └── ViewModelLocator.cs └── Views ├── Coverters └── GroupKindToImageSourceConverter.cs ├── GroupPageSystem.xaml ├── GroupPageSystem.xaml.cs ├── HomePage.xaml ├── HomePage.xaml.cs ├── SettingGroupPage.xaml └── SettingGroupPage.xaml.cs /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | x64/ 19 | x86/ 20 | bld/ 21 | [Bb]in/ 22 | [Oo]bj/ 23 | [Ll]og/ 24 | 25 | # Visual Studio 2015 cache/options directory 26 | .vs/ 27 | # Uncomment if you have tasks that create the project's static files in wwwroot 28 | #wwwroot/ 29 | 30 | # MSTest test Results 31 | [Tt]est[Rr]esult*/ 32 | [Bb]uild[Ll]og.* 33 | 34 | # NUNIT 35 | *.VisualState.xml 36 | TestResult.xml 37 | 38 | # Build Results of an ATL Project 39 | [Dd]ebugPS/ 40 | [Rr]eleasePS/ 41 | dlldata.c 42 | 43 | # DNX 44 | project.lock.json 45 | project.fragment.lock.json 46 | artifacts/ 47 | 48 | *_i.c 49 | *_p.c 50 | *_i.h 51 | *.ilk 52 | *.meta 53 | *.obj 54 | *.pch 55 | *.pdb 56 | *.pgc 57 | *.pgd 58 | *.rsp 59 | *.sbr 60 | *.tlb 61 | *.tli 62 | *.tlh 63 | *.tmp 64 | *.tmp_proj 65 | *.log 66 | *.vspscc 67 | *.vssscc 68 | .builds 69 | *.pidb 70 | *.svclog 71 | *.scc 72 | 73 | # Chutzpah Test files 74 | _Chutzpah* 75 | 76 | # Visual C++ cache files 77 | ipch/ 78 | *.aps 79 | *.ncb 80 | *.opendb 81 | *.opensdf 82 | *.sdf 83 | *.cachefile 84 | *.VC.db 85 | *.VC.VC.opendb 86 | 87 | # Visual Studio profiler 88 | *.psess 89 | *.vsp 90 | *.vspx 91 | *.sap 92 | 93 | # TFS 2012 Local Workspace 94 | $tf/ 95 | 96 | # Guidance Automation Toolkit 97 | *.gpState 98 | 99 | # ReSharper is a .NET coding add-in 100 | _ReSharper*/ 101 | *.[Rr]e[Ss]harper 102 | *.DotSettings.user 103 | 104 | # JustCode is a .NET coding add-in 105 | .JustCode 106 | 107 | # TeamCity is a build add-in 108 | _TeamCity* 109 | 110 | # DotCover is a Code Coverage Tool 111 | *.dotCover 112 | 113 | # NCrunch 114 | _NCrunch_* 115 | .*crunch*.local.xml 116 | nCrunchTemp_* 117 | 118 | # MightyMoose 119 | *.mm.* 120 | AutoTest.Net/ 121 | 122 | # Web workbench (sass) 123 | .sass-cache/ 124 | 125 | # Installshield output folder 126 | [Ee]xpress/ 127 | 128 | # DocProject is a documentation generator add-in 129 | DocProject/buildhelp/ 130 | DocProject/Help/*.HxT 131 | DocProject/Help/*.HxC 132 | DocProject/Help/*.hhc 133 | DocProject/Help/*.hhk 134 | DocProject/Help/*.hhp 135 | DocProject/Help/Html2 136 | DocProject/Help/html 137 | 138 | # Click-Once directory 139 | publish/ 140 | 141 | # Publish Web Output 142 | *.[Pp]ublish.xml 143 | *.azurePubxml 144 | # TODO: Comment the next line if you want to checkin your web deploy settings 145 | # but database connection strings (with potential passwords) will be unencrypted 146 | #*.pubxml 147 | *.publishproj 148 | 149 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 150 | # checkin your Azure Web App publish settings, but sensitive information contained 151 | # in these scripts will be unencrypted 152 | PublishScripts/ 153 | 154 | # NuGet Packages 155 | *.nupkg 156 | # The packages folder can be ignored because of Package Restore 157 | **/packages/* 158 | # except build/, which is used as an MSBuild target. 159 | !**/packages/build/ 160 | # Uncomment if necessary however generally it will be regenerated when needed 161 | #!**/packages/repositories.config 162 | # NuGet v3's project.json files produces more ignoreable files 163 | *.nuget.props 164 | *.nuget.targets 165 | 166 | # Microsoft Azure Build Output 167 | csx/ 168 | *.build.csdef 169 | 170 | # Microsoft Azure Emulator 171 | ecf/ 172 | rcf/ 173 | 174 | # Windows Store app package directories and files 175 | AppPackages/ 176 | BundleArtifacts/ 177 | Package.StoreAssociation.xml 178 | _pkginfo.txt 179 | 180 | # Visual Studio cache files 181 | # files ending in .cache can be ignored 182 | *.[Cc]ache 183 | # but keep track of directories ending in .cache 184 | !*.[Cc]ache/ 185 | 186 | # Others 187 | ClientBin/ 188 | ~$* 189 | *~ 190 | *.dbmdl 191 | *.dbproj.schemaview 192 | *.jfm 193 | *.pfx 194 | *.publishsettings 195 | node_modules/ 196 | orleans.codegen.cs 197 | 198 | # Since there are multiple workflows, uncomment next line to ignore bower_components 199 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 200 | #bower_components/ 201 | 202 | # RIA/Silverlight projects 203 | Generated_Code/ 204 | 205 | # Backup & report files from converting an old project file 206 | # to a newer Visual Studio version. Backup files are not needed, 207 | # because we have git ;-) 208 | _UpgradeReport_Files/ 209 | Backup*/ 210 | UpgradeLog*.XML 211 | UpgradeLog*.htm 212 | 213 | # SQL Server files 214 | *.mdf 215 | *.ldf 216 | 217 | # Business Intelligence projects 218 | *.rdl.data 219 | *.bim.layout 220 | *.bim_*.settings 221 | 222 | # Microsoft Fakes 223 | FakesAssemblies/ 224 | 225 | # GhostDoc plugin setting file 226 | *.GhostDoc.xml 227 | 228 | # Node.js Tools for Visual Studio 229 | .ntvs_analysis.dat 230 | 231 | # Visual Studio 6 build log 232 | *.plg 233 | 234 | # Visual Studio 6 workspace options file 235 | *.opt 236 | 237 | # Visual Studio LightSwitch build output 238 | **/*.HTMLClient/GeneratedArtifacts 239 | **/*.DesktopClient/GeneratedArtifacts 240 | **/*.DesktopClient/ModelManifest.xml 241 | **/*.Server/GeneratedArtifacts 242 | **/*.Server/ModelManifest.xml 243 | _Pvt_Extensions 244 | 245 | # Paket dependency manager 246 | .paket/paket.exe 247 | paket-files/ 248 | 249 | # FAKE - F# Make 250 | .fake/ 251 | 252 | # JetBrains Rider 253 | .idea/ 254 | *.sln.iml 255 | 256 | # CodeRush 257 | .cr/ 258 | 259 | # Python Tools for Visual Studio (PTVS) 260 | __pycache__/ 261 | *.pyc 262 | /Fonts 263 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SettingsUWP 2 | A UWP Windows 10 Settings app concept 3 | 4 | ![alt text](https://github.com/Leisvan/SettingsUWP/blob/master/SettingsUWP/Assets/Screenshots/Screen_001.jpg) 5 | -------------------------------------------------------------------------------- /SettingsUWP.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29519.181 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SettingsUWP", "SettingsUWP\SettingsUWP.csproj", "{2B8F43CA-86E8-4C61-B653-F26CE98E55F9}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Debug|ARM = Debug|ARM 12 | Debug|ARM64 = Debug|ARM64 13 | Debug|x64 = Debug|x64 14 | Debug|x86 = Debug|x86 15 | Release|Any CPU = Release|Any CPU 16 | Release|ARM = Release|ARM 17 | Release|ARM64 = Release|ARM64 18 | Release|x64 = Release|x64 19 | Release|x86 = Release|x86 20 | EndGlobalSection 21 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 22 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Debug|Any CPU.ActiveCfg = Debug|x86 23 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Debug|ARM.ActiveCfg = Debug|ARM 24 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Debug|ARM.Build.0 = Debug|ARM 25 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Debug|ARM.Deploy.0 = Debug|ARM 26 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Debug|ARM64.ActiveCfg = Debug|ARM64 27 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Debug|ARM64.Build.0 = Debug|ARM64 28 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Debug|ARM64.Deploy.0 = Debug|ARM64 29 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Debug|x64.ActiveCfg = Debug|x64 30 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Debug|x64.Build.0 = Debug|x64 31 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Debug|x64.Deploy.0 = Debug|x64 32 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Debug|x86.ActiveCfg = Debug|x86 33 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Debug|x86.Build.0 = Debug|x86 34 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Debug|x86.Deploy.0 = Debug|x86 35 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Release|Any CPU.ActiveCfg = Release|x86 36 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Release|ARM.ActiveCfg = Release|ARM 37 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Release|ARM.Build.0 = Release|ARM 38 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Release|ARM.Deploy.0 = Release|ARM 39 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Release|ARM64.ActiveCfg = Release|ARM64 40 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Release|ARM64.Build.0 = Release|ARM64 41 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Release|ARM64.Deploy.0 = Release|ARM64 42 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Release|x64.ActiveCfg = Release|x64 43 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Release|x64.Build.0 = Release|x64 44 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Release|x64.Deploy.0 = Release|x64 45 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Release|x86.ActiveCfg = Release|x86 46 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Release|x86.Build.0 = Release|x86 47 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9}.Release|x86.Deploy.0 = Release|x86 48 | EndGlobalSection 49 | GlobalSection(SolutionProperties) = preSolution 50 | HideSolutionNode = FALSE 51 | EndGlobalSection 52 | GlobalSection(ExtensibilityGlobals) = postSolution 53 | SolutionGuid = {EA4700BC-4136-40A9-9369-39AC0D92D9FA} 54 | EndGlobalSection 55 | EndGlobal 56 | -------------------------------------------------------------------------------- /SettingsUWP/.editorconfig: -------------------------------------------------------------------------------- 1 | # top-most EditorConfig file 2 | root = true 3 | 4 | [*] 5 | end_of_line = crlf 6 | 7 | [*.{cs,xaml}] 8 | indent_style = space 9 | indent_size = 4 10 | trim_trailing_whitespace = true 11 | insert_final_newline = true 12 | -------------------------------------------------------------------------------- /SettingsUWP/Activation/ActivationHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Threading.Tasks; 3 | 4 | namespace SettingsUWP.Activation 5 | { 6 | // For more information on understanding and extending activation flow see 7 | // https://github.com/Microsoft/WindowsTemplateStudio/blob/master/docs/activation.md 8 | internal abstract class ActivationHandler 9 | { 10 | public abstract bool CanHandle(object args); 11 | 12 | public abstract Task HandleAsync(object args); 13 | } 14 | 15 | // Extend this class to implement new ActivationHandlers 16 | internal abstract class ActivationHandler : ActivationHandler 17 | where T : class 18 | { 19 | // Override this method to add the activation logic in your activation handler 20 | protected abstract Task HandleInternalAsync(T args); 21 | 22 | public override async Task HandleAsync(object args) 23 | { 24 | await HandleInternalAsync(args as T); 25 | } 26 | 27 | public override bool CanHandle(object args) 28 | { 29 | // CanHandle checks the args is of type you have configured 30 | return args is T && CanHandleInternal(args as T); 31 | } 32 | 33 | // You can override this method to add extra validation on activation args 34 | // to determine if your ActivationHandler should handle this activation args 35 | protected virtual bool CanHandleInternal(T args) 36 | { 37 | return true; 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /SettingsUWP/Activation/DefaultActivationHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Threading.Tasks; 3 | 4 | using SettingsUWP.Services; 5 | using SettingsUWP.ViewModels; 6 | 7 | using Windows.ApplicationModel.Activation; 8 | 9 | namespace SettingsUWP.Activation 10 | { 11 | internal class DefaultActivationHandler : ActivationHandler 12 | { 13 | private readonly string _navElement; 14 | 15 | public NavigationServiceEx NavigationService => ViewModelLocator.Current.NavigationService; 16 | 17 | public DefaultActivationHandler(Type navElement) 18 | { 19 | _navElement = navElement.FullName; 20 | } 21 | 22 | protected override async Task HandleInternalAsync(IActivatedEventArgs args) 23 | { 24 | // When the navigation stack isn't restored, navigate to the first page and configure 25 | // the new page by passing required information in the navigation parameter 26 | object arguments = null; 27 | if (args is LaunchActivatedEventArgs launchArgs) 28 | { 29 | arguments = launchArgs.Arguments; 30 | } 31 | 32 | NavigationService.Navigate(_navElement, arguments); 33 | await Task.CompletedTask; 34 | } 35 | 36 | protected override bool CanHandleInternal(IActivatedEventArgs args) 37 | { 38 | // None of the ActivationHandlers has handled the app activation 39 | return NavigationService.Frame.Content == null && _navElement != null; 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /SettingsUWP/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 22 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 38 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /SettingsUWP/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | using SettingsUWP.Services; 4 | 5 | using Windows.ApplicationModel.Activation; 6 | using Windows.UI.Xaml; 7 | 8 | namespace SettingsUWP 9 | { 10 | public sealed partial class App : Application 11 | { 12 | private Lazy _activationService; 13 | 14 | private ActivationService ActivationService 15 | { 16 | get { return _activationService.Value; } 17 | } 18 | 19 | public App() 20 | { 21 | InitializeComponent(); 22 | 23 | // Deferred execution until used. Check https://msdn.microsoft.com/library/dd642331(v=vs.110).aspx for further info on Lazy class. 24 | _activationService = new Lazy(CreateActivationService); 25 | } 26 | 27 | protected override async void OnLaunched(LaunchActivatedEventArgs args) 28 | { 29 | if (!args.PrelaunchActivated) 30 | { 31 | await ActivationService.ActivateAsync(args); 32 | } 33 | } 34 | 35 | protected override async void OnActivated(IActivatedEventArgs args) 36 | { 37 | await ActivationService.ActivateAsync(args); 38 | } 39 | 40 | private ActivationService CreateActivationService() 41 | { 42 | return new ActivationService(this, typeof(ViewModels.HomeViewModel)); 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /SettingsUWP/Assets/Fonts/FabMDL2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Fonts/FabMDL2.ttf -------------------------------------------------------------------------------- /SettingsUWP/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Screenshots/Screen_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Screenshots/Screen_001.jpg -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Account.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Account.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Account.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Account.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Account.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Account.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Account.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Account.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Account.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Account.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Apps.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Apps.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Apps.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Apps.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Apps.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Apps.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Apps.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Apps.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Apps.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Apps.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/CortanaSearch.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/CortanaSearch.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/CortanaSearch.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/CortanaSearch.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/CortanaSearch.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/CortanaSearch.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/CortanaSearch.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/CortanaSearch.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/CortanaSearch.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/CortanaSearch.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Devices.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Devices.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Devices.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Devices.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Devices.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Devices.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Devices.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Devices.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Devices.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Devices.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/EaseAccess.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/EaseAccess.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/EaseAccess.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/EaseAccess.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/EaseAccess.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/EaseAccess.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/EaseAccess.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/EaseAccess.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/EaseAccess.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/EaseAccess.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Gaming.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Gaming.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Gaming.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Gaming.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Gaming.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Gaming.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Gaming.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Gaming.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Gaming.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Gaming.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Network.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Network.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Network.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Network.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Network.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Network.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Network.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Network.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Network.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Network.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Personalization.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Personalization.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Personalization.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Personalization.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Personalization.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Personalization.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Personalization.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Personalization.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Personalization.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Personalization.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Phone.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Phone.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Phone.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Phone.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Phone.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Phone.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Phone.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Phone.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Placeholder.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Placeholder.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Privacy.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Privacy.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Privacy.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Privacy.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Privacy.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Privacy.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Privacy.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Privacy.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/Privacy.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/Privacy.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/RegionTime.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/RegionTime.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/RegionTime.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/RegionTime.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/RegionTime.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/RegionTime.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/RegionTime.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/RegionTime.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/RegionTime.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/RegionTime.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/SecurityUpdate.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/SecurityUpdate.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/SecurityUpdate.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/SecurityUpdate.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/SecurityUpdate.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/SecurityUpdate.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/SecurityUpdate.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/SecurityUpdate.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/SecurityUpdate.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/SecurityUpdate.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/System.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/System.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/System.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/System.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/System.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/System.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/System.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/System.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SettingTiles/System.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SettingTiles/System.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/User/userprofile.scale-100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/User/userprofile.scale-100.jpg -------------------------------------------------------------------------------- /SettingsUWP/Assets/User/userprofile.scale-125.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/User/userprofile.scale-125.jpg -------------------------------------------------------------------------------- /SettingsUWP/Assets/User/userprofile.scale-150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/User/userprofile.scale-150.jpg -------------------------------------------------------------------------------- /SettingsUWP/Assets/User/userprofile.scale-200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/User/userprofile.scale-200.jpg -------------------------------------------------------------------------------- /SettingsUWP/Assets/User/userprofile.scale-400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/User/userprofile.scale-400.jpg -------------------------------------------------------------------------------- /SettingsUWP/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /SettingsUWP/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leisvan/SettingsUWP/222f144d58525504b020f3125bf8b063c8fb4b54/SettingsUWP/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /SettingsUWP/Helpers/ResourceExtensions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Runtime.InteropServices; 3 | 4 | using Windows.ApplicationModel.Resources; 5 | 6 | namespace SettingsUWP.Helpers 7 | { 8 | internal static class ResourceExtensions 9 | { 10 | private static ResourceLoader _resLoader = new ResourceLoader(); 11 | 12 | public static string GetLocalized(this string resourceKey) 13 | { 14 | return _resLoader.GetString(resourceKey); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /SettingsUWP/Helpers/Singleton.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Concurrent; 3 | 4 | namespace SettingsUWP.Core.Helpers 5 | { 6 | public static class Singleton 7 | where T : new() 8 | { 9 | private static ConcurrentDictionary _instances = new ConcurrentDictionary(); 10 | 11 | public static T Instance 12 | { 13 | get 14 | { 15 | return _instances.GetOrAdd(typeof(T), (t) => new T()); 16 | } 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /SettingsUWP/Package.appxmanifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 9 | 10 | 14 | 15 | 16 | 17 | 18 | SettingsUWP 19 | Leisvan 20 | Assets\StoreLogo.png 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 35 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /SettingsUWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.CompilerServices; 4 | using System.Runtime.InteropServices; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("SettingsUWP")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("")] 13 | [assembly: AssemblyProduct("SettingsUWP")] 14 | [assembly: AssemblyCopyright("Copyright © 2020")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | 18 | // Version information for an assembly consists of the following four values: 19 | // 20 | // Major Version 21 | // Minor Version 22 | // Build Number 23 | // Revision 24 | // 25 | // You can specify all the values or you can default the Build and Revision Numbers 26 | // by using the '*' as shown below: 27 | // [assembly: AssemblyVersion("1.0.*")] 28 | [assembly: AssemblyVersion("1.0.0.0")] 29 | [assembly: AssemblyFileVersion("1.0.0.0")] 30 | [assembly: ComVisible(false)] 31 | -------------------------------------------------------------------------------- /SettingsUWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- 1 |  17 | 18 | 19 | 20 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /SettingsUWP/Services/ActivationService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | using SettingsUWP.Activation; 7 | using SettingsUWP.ViewModels; 8 | 9 | using Windows.ApplicationModel.Activation; 10 | using Windows.System; 11 | using Windows.UI.Xaml; 12 | using Windows.UI.Xaml.Controls; 13 | using Windows.UI.Xaml.Input; 14 | 15 | namespace SettingsUWP.Services 16 | { 17 | // For more information on understanding and extending activation flow see 18 | // https://github.com/Microsoft/WindowsTemplateStudio/blob/master/docs/activation.md 19 | internal class ActivationService 20 | { 21 | private readonly App _app; 22 | private readonly Type _defaultNavItem; 23 | private Lazy _shell; 24 | 25 | private object _lastActivationArgs; 26 | 27 | public static NavigationServiceEx NavigationService => ViewModelLocator.Current.NavigationService; 28 | 29 | public static readonly KeyboardAccelerator AltLeftKeyboardAccelerator = BuildKeyboardAccelerator(VirtualKey.Left, VirtualKeyModifiers.Menu); 30 | 31 | public static readonly KeyboardAccelerator BackKeyboardAccelerator = BuildKeyboardAccelerator(VirtualKey.GoBack); 32 | 33 | public ActivationService(App app, Type defaultNavItem, Lazy shell = null) 34 | { 35 | _app = app; 36 | _shell = shell; 37 | _defaultNavItem = defaultNavItem; 38 | } 39 | 40 | public async Task ActivateAsync(object activationArgs) 41 | { 42 | if (IsInteractive(activationArgs)) 43 | { 44 | // Initialize services that you need before app activation 45 | // take into account that the splash screen is shown while this code runs. 46 | await InitializeAsync(); 47 | 48 | // Do not repeat app initialization when the Window already has content, 49 | // just ensure that the window is active 50 | if (Window.Current.Content == null) 51 | { 52 | // Create a Shell or Frame to act as the navigation context 53 | Window.Current.Content = _shell?.Value ?? new Frame(); 54 | NavigationService.NavigationFailed += (sender, e) => 55 | { 56 | throw e.Exception; 57 | }; 58 | } 59 | } 60 | 61 | // Depending on activationArgs one of ActivationHandlers or DefaultActivationHandler 62 | // will navigate to the first page 63 | await HandleActivationAsync(activationArgs); 64 | _lastActivationArgs = activationArgs; 65 | 66 | if (IsInteractive(activationArgs)) 67 | { 68 | // Ensure the current window is active 69 | Window.Current.Activate(); 70 | 71 | // Tasks after activation 72 | await StartupAsync(); 73 | } 74 | } 75 | 76 | private static KeyboardAccelerator BuildKeyboardAccelerator(VirtualKey key, VirtualKeyModifiers? modifiers = null) 77 | { 78 | var keyboardAccelerator = new KeyboardAccelerator() { Key = key }; 79 | if (modifiers.HasValue) 80 | { 81 | keyboardAccelerator.Modifiers = modifiers.Value; 82 | } 83 | 84 | keyboardAccelerator.Invoked += OnKeyboardAcceleratorInvoked; 85 | return keyboardAccelerator; 86 | } 87 | 88 | private static void OnKeyboardAcceleratorInvoked(KeyboardAccelerator sender, KeyboardAcceleratorInvokedEventArgs args) 89 | { 90 | var result = NavigationService.GoBack(); 91 | args.Handled = result; 92 | } 93 | 94 | private async Task InitializeAsync() 95 | { 96 | UIService.ExtendTitleBar(); 97 | UIService.TransparentTitleBarButtonsBackground(); 98 | await Task.CompletedTask; 99 | } 100 | 101 | private async Task HandleActivationAsync(object activationArgs) 102 | { 103 | var activationHandler = GetActivationHandlers() 104 | .FirstOrDefault(h => h.CanHandle(activationArgs)); 105 | 106 | if (activationHandler != null) 107 | { 108 | await activationHandler.HandleAsync(activationArgs); 109 | } 110 | 111 | if (IsInteractive(activationArgs)) 112 | { 113 | var defaultHandler = new DefaultActivationHandler(_defaultNavItem); 114 | if (defaultHandler.CanHandle(activationArgs)) 115 | { 116 | await defaultHandler.HandleAsync(activationArgs); 117 | } 118 | } 119 | } 120 | 121 | private async Task StartupAsync() 122 | { 123 | await Task.CompletedTask; 124 | } 125 | 126 | private IEnumerable GetActivationHandlers() 127 | { 128 | yield break; 129 | } 130 | 131 | private bool IsInteractive(object args) 132 | { 133 | return args is IActivatedEventArgs; 134 | } 135 | } 136 | } 137 | -------------------------------------------------------------------------------- /SettingsUWP/Services/DataProvider.cs: -------------------------------------------------------------------------------- 1 | using SettingsUWP.ViewModels; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace SettingsUWP.Services 9 | { 10 | public static class DataProvider 11 | { 12 | public static ICollection GetTestGroups() 13 | { 14 | List groups = new List(); 15 | var system = new SettingGroup 16 | { 17 | Kind = SettingGroupKind.System, 18 | Title = "System", 19 | Description = "Display, sound, notifications, power", 20 | }; 21 | system.Groups.Add(new SettingSubtitle { Text = "Common System Settings", IconGlyph = "" }); 22 | system.Groups.Add(new SettingSubtitle { Text = "Display", IconGlyph = "" }); 23 | system.Groups.Add(new SettingSubtitle { Text = "Sound", IconGlyph = "" }); 24 | system.Groups.Add(new SettingSubtitle { Text = "Notifications & actions", IconGlyph = "" }); 25 | system.Groups.Add(new SettingSubtitle { Text = "Focus asist", IconGlyph = "" }); 26 | system.Groups.Add(new SettingSubtitle { Text = "Power & sleep", IconGlyph = "" }); 27 | system.Groups.Add(new SettingSubtitle { Text = "Battery", IconGlyph = "" }); 28 | system.Groups.Add(new SettingSubtitle { Text = "Storage", IconGlyph = "" }); 29 | system.Groups.Add(new SettingSubtitle { Text = "Tablet mode", IconGlyph = "" }); 30 | system.Groups.Add(new SettingSubtitle { Text = "Multitasking", IconGlyph = "" }); 31 | system.Groups.Add(new SettingSubtitle { Text = "Projecting to this PC", IconGlyph = "" }); 32 | system.Groups.Add(new SettingSubtitle { Text = "Shared experiences", IconGlyph = "" }); 33 | system.Groups.Add(new SettingSubtitle { Text = "Clipboard", IconGlyph = "" }); 34 | system.Groups.Add(new SettingSubtitle { Text = "Remote Desktop", IconGlyph = "" }); 35 | system.Groups.Add(new SettingSubtitle { Text = "About", IconGlyph = "" }); 36 | 37 | var devices = new SettingGroup 38 | { 39 | Kind = SettingGroupKind.Devices, 40 | Title = "Devices", 41 | Description = "Bluetooth, printers, mouse", 42 | }; 43 | 44 | var phone = new SettingGroup 45 | { 46 | Kind = SettingGroupKind.Phone, 47 | Title = "Phone", 48 | Description = "Link your Android, iPhone", 49 | }; 50 | 51 | var network = new SettingGroup 52 | { 53 | Kind = SettingGroupKind.NetworkAndInternet, 54 | Title = "Network & Internet", 55 | Description = "Wi-Fi, airplane mode, VPN", 56 | }; 57 | 58 | var personalization = new SettingGroup 59 | { 60 | Kind = SettingGroupKind.Personalization, 61 | Title = "Personalization", 62 | Description = "Background, lock screen, colors", 63 | }; 64 | 65 | var apps = new SettingGroup 66 | { 67 | Kind = SettingGroupKind.Apps, 68 | Title = "Apps", 69 | Description = "Uninstall, defaults, optional features", 70 | }; 71 | 72 | var accounts = new SettingGroup 73 | { 74 | Kind = SettingGroupKind.Account, 75 | Title = "Accounts", 76 | Description = "Your accounts, email, sync, work, family", 77 | }; 78 | 79 | var time = new SettingGroup 80 | { 81 | Kind = SettingGroupKind.TimeAndLanguage, 82 | Title = "Time & Language", 83 | Description = "Speech, region, date", 84 | }; 85 | 86 | var gaming = new SettingGroup 87 | { 88 | Kind = SettingGroupKind.Gaming, 89 | Title = "Gaming", 90 | Description = "Game bar, captues, broadcasting, game Mode", 91 | }; 92 | 93 | var easeAccess = new SettingGroup 94 | { 95 | Kind = SettingGroupKind.EaseOfAccess, 96 | Title = "Ease of Access", 97 | Description = "Narrator, magnifier, high contrast", 98 | }; 99 | 100 | var cortanaAndSearch = new SettingGroup 101 | { 102 | Kind = SettingGroupKind.CortanaAndSearch, 103 | Title = "Cortana & Search", 104 | Description = "Cortana language, permissions, notifications, find my files", 105 | }; 106 | 107 | var privacy = new SettingGroup 108 | { 109 | Kind = SettingGroupKind.Privacy, 110 | Title = "Privacy", 111 | Description = "Location, camera, microphone", 112 | }; 113 | 114 | var update = new SettingGroup 115 | { 116 | Kind = SettingGroupKind.UpdateAndSecurity, 117 | Title = "Update & Security", 118 | Description = "Windows update, recovery, backup", 119 | }; 120 | 121 | 122 | groups.Add(system); 123 | groups.Add(devices); 124 | groups.Add(phone); 125 | groups.Add(network); 126 | groups.Add(personalization); 127 | groups.Add(apps); 128 | groups.Add(accounts); 129 | groups.Add(time); 130 | groups.Add(gaming); 131 | groups.Add(easeAccess); 132 | groups.Add(cortanaAndSearch); 133 | groups.Add(privacy); 134 | groups.Add(update); 135 | 136 | return groups; 137 | } 138 | } 139 | 140 | } 141 | -------------------------------------------------------------------------------- /SettingsUWP/Services/NavigationServiceEx.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | 5 | using SettingsUWP.Helpers; 6 | 7 | using Windows.UI.Xaml; 8 | using Windows.UI.Xaml.Controls; 9 | using Windows.UI.Xaml.Media.Animation; 10 | using Windows.UI.Xaml.Navigation; 11 | 12 | namespace SettingsUWP.Services 13 | { 14 | public class NavigationServiceEx 15 | { 16 | public event NavigatedEventHandler Navigated; 17 | 18 | public event NavigationFailedEventHandler NavigationFailed; 19 | 20 | private readonly Dictionary _pages = new Dictionary(); 21 | 22 | private Frame _frame; 23 | private object _lastParamUsed; 24 | 25 | public Frame Frame 26 | { 27 | get 28 | { 29 | if (_frame == null) 30 | { 31 | _frame = Window.Current.Content as Frame; 32 | RegisterFrameEvents(); 33 | } 34 | 35 | return _frame; 36 | } 37 | 38 | set 39 | { 40 | UnregisterFrameEvents(); 41 | _frame = value; 42 | RegisterFrameEvents(); 43 | } 44 | } 45 | 46 | public bool CanGoBack => Frame.CanGoBack; 47 | 48 | public bool CanGoForward => Frame.CanGoForward; 49 | 50 | public bool GoBack() 51 | { 52 | if (CanGoBack) 53 | { 54 | Frame.GoBack(); 55 | return true; 56 | } 57 | 58 | return false; 59 | } 60 | 61 | public void GoForward() => Frame.GoForward(); 62 | 63 | public bool Navigate(string pageKey, object parameter = null, NavigationTransitionInfo infoOverride = null) 64 | { 65 | Type page; 66 | lock (_pages) 67 | { 68 | if (!_pages.TryGetValue(pageKey, out page)) 69 | { 70 | throw new ArgumentException(string.Format("ExceptionNavigationServiceExPageNotFound".GetLocalized(), pageKey), nameof(pageKey)); 71 | } 72 | } 73 | 74 | if (Frame.Content?.GetType() != page || (parameter != null && !parameter.Equals(_lastParamUsed))) 75 | { 76 | var navigationResult = Frame.Navigate(page, parameter, infoOverride); 77 | if (navigationResult) 78 | { 79 | _lastParamUsed = parameter; 80 | } 81 | 82 | return navigationResult; 83 | } 84 | else 85 | { 86 | return false; 87 | } 88 | } 89 | 90 | public void Configure(string key, Type pageType) 91 | { 92 | lock (_pages) 93 | { 94 | if (_pages.ContainsKey(key)) 95 | { 96 | throw new ArgumentException(string.Format("ExceptionNavigationServiceExKeyIsInNavigationService".GetLocalized(), key)); 97 | } 98 | 99 | if (_pages.Any(p => p.Value == pageType)) 100 | { 101 | throw new ArgumentException(string.Format("ExceptionNavigationServiceExTypeAlreadyConfigured".GetLocalized(), _pages.First(p => p.Value == pageType).Key)); 102 | } 103 | 104 | _pages.Add(key, pageType); 105 | } 106 | } 107 | 108 | public string GetNameOfRegisteredPage(Type page) 109 | { 110 | lock (_pages) 111 | { 112 | if (_pages.ContainsValue(page)) 113 | { 114 | return _pages.FirstOrDefault(p => p.Value == page).Key; 115 | } 116 | else 117 | { 118 | throw new ArgumentException(string.Format("ExceptionNavigationServiceExPageUnknown".GetLocalized(), page.Name)); 119 | } 120 | } 121 | } 122 | 123 | private void RegisterFrameEvents() 124 | { 125 | if (_frame != null) 126 | { 127 | _frame.Navigated += Frame_Navigated; 128 | _frame.NavigationFailed += Frame_NavigationFailed; 129 | } 130 | } 131 | 132 | private void UnregisterFrameEvents() 133 | { 134 | if (_frame != null) 135 | { 136 | _frame.Navigated -= Frame_Navigated; 137 | _frame.NavigationFailed -= Frame_NavigationFailed; 138 | } 139 | } 140 | 141 | private void Frame_NavigationFailed(object sender, NavigationFailedEventArgs e) => NavigationFailed?.Invoke(sender, e); 142 | 143 | private void Frame_Navigated(object sender, NavigationEventArgs e) => Navigated?.Invoke(sender, e); 144 | } 145 | } 146 | -------------------------------------------------------------------------------- /SettingsUWP/Services/UIService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using Windows.ApplicationModel.Core; 7 | using Windows.UI; 8 | using Windows.UI.ViewManagement; 9 | 10 | namespace SettingsUWP.Services 11 | { 12 | public class UIService 13 | { 14 | public static void ExtendTitleBar() 15 | { 16 | CoreApplicationViewTitleBar coreTitleBar = CoreApplication.GetCurrentView().TitleBar; 17 | coreTitleBar.ExtendViewIntoTitleBar = true; 18 | } 19 | public static void TransparentTitleBarButtonsBackground() 20 | { 21 | var titleBar = ApplicationView.GetForCurrentView().TitleBar; 22 | //Active: 23 | titleBar.BackgroundColor = Colors.Transparent; 24 | titleBar.ButtonBackgroundColor = Colors.Transparent; 25 | 26 | //Inactive: 27 | titleBar.InactiveBackgroundColor = Colors.Transparent; 28 | titleBar.ButtonInactiveBackgroundColor = Colors.Transparent; 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /SettingsUWP/SettingsUWP.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | x86 7 | {2B8F43CA-86E8-4C61-B653-F26CE98E55F9} 8 | AppContainerExe 9 | Properties 10 | SettingsUWP 11 | SettingsUWP 12 | en-US 13 | UAP 14 | 10.0.18362.0 15 | 10.0.18362.0 16 | 14 17 | 512 18 | {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 19 | true 20 | SettingsUWP_TemporaryKey.pfx 21 | 22 | 23 | true 24 | bin\x86\Debug\ 25 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP 26 | ;2008 27 | full 28 | x86 29 | false 30 | prompt 31 | true 32 | 33 | 34 | bin\x86\Release\ 35 | TRACE;NETFX_CORE;WINDOWS_UWP 36 | true 37 | ;2008 38 | pdbonly 39 | x86 40 | false 41 | prompt 42 | true 43 | true 44 | 45 | 46 | true 47 | bin\ARM\Debug\ 48 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP 49 | ;2008 50 | full 51 | ARM 52 | false 53 | prompt 54 | true 55 | 56 | 57 | bin\ARM\Release\ 58 | TRACE;NETFX_CORE;WINDOWS_UWP 59 | true 60 | ;2008 61 | pdbonly 62 | ARM 63 | false 64 | prompt 65 | true 66 | true 67 | 68 | 69 | true 70 | bin\ARM64\Debug\ 71 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP 72 | ;2008 73 | full 74 | ARM64 75 | false 76 | prompt 77 | true 78 | true 79 | 80 | 81 | bin\ARM64\Release\ 82 | TRACE;NETFX_CORE;WINDOWS_UWP 83 | true 84 | ;2008 85 | pdbonly 86 | ARM64 87 | false 88 | prompt 89 | true 90 | true 91 | 92 | 93 | true 94 | bin\x64\Debug\ 95 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP 96 | ;2008 97 | full 98 | x64 99 | false 100 | prompt 101 | true 102 | 103 | 104 | bin\x64\Release\ 105 | TRACE;NETFX_CORE;WINDOWS_UWP 106 | true 107 | ;2008 108 | pdbonly 109 | x64 110 | false 111 | prompt 112 | true 113 | true 114 | 115 | 116 | PackageReference 117 | 118 | 119 | 120 | 6.2.9 121 | 122 | 123 | 6.0.0 124 | 125 | 126 | 2.3.200213001 127 | 128 | 129 | 2.0.1 130 | 131 | 132 | 5.4.1.2 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | GroupPageSystem.xaml 152 | 153 | 154 | HomePage.xaml 155 | 156 | 157 | SettingGroupPage.xaml 158 | 159 | 160 | 161 | 162 | App.xaml 163 | 164 | 165 | 166 | 167 | 168 | Designer 169 | MSBuild:Compile 170 | 171 | 172 | MSBuild:Compile 173 | Designer 174 | 175 | 176 | Designer 177 | MSBuild:Compile 178 | 179 | 180 | 181 | 182 | Designer 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | MSBuild:Compile 321 | Designer 322 | 323 | 324 | 325 | 14.0 326 | 327 | 328 | 335 | -------------------------------------------------------------------------------- /SettingsUWP/Strings/en-us/Resources.resw: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Settings 122 | Application display name 123 | 124 | 125 | Settings 126 | Application description 127 | 128 | 129 | Page not found: {0}. Did you forget to call NavigationService.Configure? 130 | Page to navigate not found in navigation service 131 | 132 | 133 | The key {0} is already configured in NavigationService 134 | The page is already configured in navigation service 135 | 136 | 137 | This type is already configured with key {0} 138 | The page type is already configured with page key in navigation service 139 | 140 | 141 | The page '{0}' is unknown by the NavigationService 142 | The page is unknown or not registered in navigation service 143 | 144 | 145 | Home 146 | Page title for HomePage 147 | 148 | -------------------------------------------------------------------------------- /SettingsUWP/ViewModels/HomeViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.ObjectModel; 3 | using GalaSoft.MvvmLight; 4 | using SettingsUWP.Services; 5 | 6 | namespace SettingsUWP.ViewModels 7 | { 8 | public class HomeViewModel : ViewModelBase 9 | { 10 | public ObservableCollection Groups 11 | { 12 | get; 13 | set; 14 | } 15 | 16 | public HomeViewModel() 17 | { 18 | Groups = new ObservableCollection(DataProvider.GetTestGroups()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SettingsUWP/ViewModels/SettingGroup.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 SettingsUWP.ViewModels 8 | { 9 | public class SettingGroup 10 | { 11 | public SettingGroupKind Kind { get; set; } 12 | public string Title { get; set; } 13 | public string Description { get; set; } 14 | public List Groups { get; set; } = new List(); 15 | } 16 | 17 | public class SettingSubtitle 18 | { 19 | public string Text { get; set; } 20 | public string IconGlyph { get; set; } 21 | } 22 | 23 | public enum SettingGroupKind 24 | { 25 | System, 26 | Devices, 27 | Phone, 28 | NetworkAndInternet, 29 | Personalization, 30 | Apps, 31 | Account, 32 | TimeAndLanguage, 33 | Gaming, 34 | EaseOfAccess, 35 | CortanaAndSearch, 36 | Privacy, 37 | UpdateAndSecurity, 38 | 39 | Unknown, 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /SettingsUWP/ViewModels/ViewModelLocator.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | using GalaSoft.MvvmLight.Ioc; 4 | 5 | using SettingsUWP.Services; 6 | using SettingsUWP.Views; 7 | 8 | namespace SettingsUWP.ViewModels 9 | { 10 | [Windows.UI.Xaml.Data.Bindable] 11 | public class ViewModelLocator 12 | { 13 | private static ViewModelLocator _current; 14 | 15 | public static ViewModelLocator Current => _current ?? (_current = new ViewModelLocator()); 16 | 17 | private ViewModelLocator() 18 | { 19 | SimpleIoc.Default.Register(() => new NavigationServiceEx()); 20 | Register(); 21 | Register(); 22 | } 23 | 24 | public HomeViewModel HomeViewModel => SimpleIoc.Default.GetInstance(); 25 | 26 | public NavigationServiceEx NavigationService => SimpleIoc.Default.GetInstance(); 27 | 28 | public void Register() 29 | where VM : class 30 | { 31 | SimpleIoc.Default.Register(); 32 | 33 | NavigationService.Configure(typeof(VM).FullName, typeof(V)); 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /SettingsUWP/Views/Coverters/GroupKindToImageSourceConverter.cs: -------------------------------------------------------------------------------- 1 | using SettingsUWP.ViewModels; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | using Windows.UI.Xaml.Controls; 8 | using Windows.UI.Xaml.Data; 9 | using Windows.UI.Xaml.Media.Imaging; 10 | 11 | namespace SettingsUWP.Views.Coverters 12 | { 13 | public class GroupKindToImageSourceConverter: IValueConverter 14 | { 15 | const string UriFormat = "ms-appx:///Assets/SettingTiles/{0}.png"; 16 | public object Convert(object value, Type targetType, object parameter, string language) 17 | { 18 | if (value is SettingGroupKind kind) 19 | { 20 | string uriAddress = string.Format(UriFormat, GetAssetName(kind)); 21 | return new BitmapImage(new Uri(uriAddress)); 22 | } 23 | return null; 24 | } 25 | 26 | private string GetAssetName(SettingGroupKind kind) 27 | { 28 | switch (kind) 29 | { 30 | default: 31 | case SettingGroupKind.System: return "System"; 32 | case SettingGroupKind.Devices: return "Devices"; 33 | case SettingGroupKind.Phone: return "Phone"; 34 | case SettingGroupKind.NetworkAndInternet: return "Network"; 35 | case SettingGroupKind.Personalization: return "Personalization"; 36 | case SettingGroupKind.Apps: return "Apps"; 37 | case SettingGroupKind.Account: return "Account"; 38 | case SettingGroupKind.TimeAndLanguage: return "RegionTime"; 39 | case SettingGroupKind.Gaming: return "Gaming"; 40 | case SettingGroupKind.EaseOfAccess: return "EaseAccess"; 41 | case SettingGroupKind.CortanaAndSearch: return "CortanaSearch"; 42 | case SettingGroupKind.Privacy: return "Privacy"; 43 | case SettingGroupKind.UpdateAndSecurity: return "SecurityUpdate"; 44 | } 45 | } 46 | 47 | public object ConvertBack(object value, Type targetType, object parameter, string language) 48 | { 49 | return SettingGroupKind.Unknown; 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /SettingsUWP/Views/GroupPageSystem.xaml: -------------------------------------------------------------------------------- 1 |  10 | 11 | 300 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | -------------------------------------------------------------------------------- /SettingsUWP/Views/GroupPageSystem.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Runtime.InteropServices.WindowsRuntime; 6 | using Windows.Foundation; 7 | using Windows.Foundation.Collections; 8 | using Windows.UI.Xaml; 9 | using Windows.UI.Xaml.Controls; 10 | using Windows.UI.Xaml.Controls.Primitives; 11 | using Windows.UI.Xaml.Data; 12 | using Windows.UI.Xaml.Input; 13 | using Windows.UI.Xaml.Media; 14 | using Windows.UI.Xaml.Navigation; 15 | 16 | // The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=234238 17 | 18 | namespace SettingsUWP.Views 19 | { 20 | /// 21 | /// An empty page that can be used on its own or navigated to within a Frame. 22 | /// 23 | public sealed partial class GroupPageSystem : Page 24 | { 25 | public GroupPageSystem() 26 | { 27 | this.InitializeComponent(); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /SettingsUWP/Views/HomePage.xaml: -------------------------------------------------------------------------------- 1 |  11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 47 | 48 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /SettingsUWP/Views/HomePage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.Toolkit.Uwp.UI.Controls; 3 | using SettingsUWP.ViewModels; 4 | 5 | using Windows.UI.Xaml.Controls; 6 | 7 | namespace SettingsUWP.Views 8 | { 9 | public sealed partial class HomePage : Page 10 | { 11 | private HomeViewModel Home => ViewModelLocator.Current.HomeViewModel; 12 | 13 | public HomePage() 14 | { 15 | InitializeComponent(); 16 | } 17 | 18 | private void SettingItemClicked(object sender, ItemClickEventArgs e) 19 | { 20 | if (e.ClickedItem is SettingGroup group && sender is AdaptiveGridView control) 21 | { 22 | control.PrepareConnectedAnimation("ForwardSetting", group, "LayoutRoot"); 23 | ViewModelLocator.Current.NavigationService.Navigate(typeof(SettingGroup).FullName, group); 24 | } 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /SettingsUWP/Views/SettingGroupPage.xaml: -------------------------------------------------------------------------------- 1 |  13 | 14 | 15 | 16 | 17 | 19 | 20 | 21 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /SettingsUWP/Views/SettingGroupPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using SettingsUWP.ViewModels; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.IO; 5 | using System.Linq; 6 | using System.Runtime.InteropServices.WindowsRuntime; 7 | using Windows.Foundation; 8 | using Windows.Foundation.Collections; 9 | using Windows.UI.Xaml; 10 | using Windows.UI.Xaml.Controls; 11 | using Windows.UI.Xaml.Controls.Primitives; 12 | using Windows.UI.Xaml.Data; 13 | using Windows.UI.Xaml.Input; 14 | using Windows.UI.Xaml.Media; 15 | using Windows.UI.Xaml.Media.Animation; 16 | using Windows.UI.Xaml.Navigation; 17 | 18 | // The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=234238 19 | 20 | namespace SettingsUWP.Views 21 | { 22 | /// 23 | /// An empty page that can be used on its own or navigated to within a Frame. 24 | /// 25 | public sealed partial class SettingGroupPage : Page 26 | { 27 | public SettingGroup Group 28 | { 29 | get; 30 | private set; 31 | } 32 | 33 | public SettingGroupPage() 34 | { 35 | this.InitializeComponent(); 36 | } 37 | 38 | protected override void OnNavigatedTo(NavigationEventArgs e) 39 | { 40 | base.OnNavigatedTo(e); 41 | //Parameter init: 42 | if (e.Parameter is SettingGroup group) 43 | { 44 | Group = group; 45 | } 46 | //Animation 47 | var service = ConnectedAnimationService.GetForCurrentView(); 48 | var animation = service.GetAnimation("ForwardSetting"); 49 | if (animation != null) 50 | { 51 | animation.Configuration = new BasicConnectedAnimationConfiguration(); 52 | animation.TryStart(NavigationHeader); 53 | } 54 | //In-Page Navigation 55 | var type = GetPageTypeForGroupKind(Group.Kind); 56 | if (type != null && Group != null) 57 | { 58 | navigationFrame.Navigate(typeof(GroupPageSystem)); 59 | } 60 | } 61 | 62 | private void NavView_BackRequested(Microsoft.UI.Xaml.Controls.NavigationView sender, Microsoft.UI.Xaml.Controls.NavigationViewBackRequestedEventArgs args) 63 | { 64 | ViewModelLocator.Current.NavigationService.GoBack(); 65 | } 66 | 67 | private Type GetPageTypeForGroupKind(SettingGroupKind kind) 68 | { 69 | //Improve this practice later 70 | switch (kind) 71 | { 72 | case SettingGroupKind.System: return typeof(GroupPageSystem); 73 | case SettingGroupKind.Devices: 74 | case SettingGroupKind.Phone: 75 | case SettingGroupKind.NetworkAndInternet: 76 | case SettingGroupKind.Personalization: 77 | case SettingGroupKind.Apps: 78 | case SettingGroupKind.Account: 79 | case SettingGroupKind.TimeAndLanguage: 80 | case SettingGroupKind.Gaming: 81 | case SettingGroupKind.EaseOfAccess: 82 | case SettingGroupKind.CortanaAndSearch: 83 | case SettingGroupKind.Privacy: 84 | case SettingGroupKind.UpdateAndSecurity: 85 | default: 86 | case SettingGroupKind.Unknown: return null; 87 | } 88 | } 89 | } 90 | } 91 | --------------------------------------------------------------------------------