├── .gitattributes ├── .gitignore ├── .vs ├── PaginationWPF │ └── v16 │ │ └── .suo ├── Tutorials │ └── v16 │ │ └── .suo ├── VSWorkspaceState.json └── slnx.sqlite ├── Asset 7@3x.png ├── EnvironmentSettings.vssettings ├── Excel └── VBA │ └── MultipleCombination │ └── excel-multiple-combination-of-cells-values.xlsm ├── Fira_Code_v6.2.zip ├── VANILLA └── HTML+CSS │ ├── SideNavBar │ ├── index.html │ ├── index.js │ ├── manifest.json │ ├── resources │ │ ├── abstract.png │ │ └── dp.jpg │ └── style.css │ └── SimpleLoadingAnimation │ ├── index.css │ └── index.html ├── VUEJS ├── InteractiveClickableMap │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── india.svg │ │ │ └── vue.svg │ │ ├── main.js │ │ └── style.css │ └── vite.config.js ├── ViteVueSetup2023 │ ├── .eslintrc-auto-import.json │ ├── .gitignore │ ├── .prettierrc.json │ ├── .vscode │ │ └── extensions.json │ ├── README.md │ ├── auto-imports.d.ts │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── @Pages │ │ │ ├── AuthPage.vue │ │ │ ├── Dashboard.vue │ │ │ ├── DemoPage.vue │ │ │ └── NotFoundPage.vue │ │ ├── @Stores │ │ │ └── authStore.ts │ │ ├── App.vue │ │ ├── assets │ │ │ ├── avtr_boy_02.jpg │ │ │ └── vue.svg │ │ ├── components │ │ │ └── HelloWorld.vue │ │ ├── main.ts │ │ ├── routes │ │ │ └── router.ts │ │ ├── style.css │ │ └── vite-env.d.ts │ ├── tailwind.config.cjs │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts └── Vue3Beginners │ ├── .gitignore │ ├── .vscode │ └── extensions.json │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── vite.svg │ └── vue.svg │ ├── src │ ├── App.vue │ ├── assets │ │ ├── dragon.png │ │ └── india.svg │ ├── components │ │ ├── HelloWorld.vue │ │ ├── IndiaMap.vue │ │ ├── PageNotFound.vue │ │ └── demo.vue │ ├── main.ts │ ├── routes.ts │ ├── stores │ │ └── index.ts │ ├── style.css │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── WPF ├── ANIMATIONS │ ├── BlinkingAnimation │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── BlinkingAnimation.csproj │ │ ├── BlinkingAnimation.sln │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NeonText.xaml │ │ └── NeonText.xaml.cs │ ├── LoadingAnimation │ │ ├── LoadingAnimation.sln │ │ └── LoadingAnimation │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── DoubleKFType.cs │ │ │ ├── LoadingAnimation.csproj │ │ │ ├── LoadingControl.xaml │ │ │ ├── LoadingControl.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── LoadingAnimation01 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── Controls │ │ │ ├── AnimatedRectangle.xaml │ │ │ └── AnimatedRectangle.xaml.cs │ │ ├── LoadingAnimation01.csproj │ │ ├── LoadingAnimation01.sln │ │ ├── MainWindow.xaml │ │ └── MainWindow.xaml.cs │ └── LoadingAnimation02 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── DonutSpinner.xaml │ │ ├── DonutSpinner.xaml.cs │ │ ├── LoadingAnimation02.csproj │ │ ├── LoadingAnimation02.sln │ │ ├── MainWindow.xaml │ │ └── MainWindow.xaml.cs ├── CONTROLS │ ├── CustomControlButtons │ │ ├── CustomControlButtons.sln │ │ └── CustomControlButtons │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── CustomControlButtons.csproj │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── NewWindow.xaml │ │ │ ├── NewWindow.xaml.cs │ │ │ ├── Notes.txt │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── minus_medium.png │ │ │ └── packages.config │ ├── PaginationControl │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── PaginationWPF.sln │ │ ├── PaginationWPF │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Converters.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Notes.txt │ │ │ ├── PaginationWPF.csproj │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── Viewmodels │ │ │ │ └── VMMain.cs │ │ │ └── packages.config │ │ └── helperControls │ │ │ ├── Models │ │ │ └── PaginationModel.cs │ │ │ ├── Notes.txt │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── ViewModel │ │ │ └── VMPagination.cs │ │ │ ├── app.config │ │ │ ├── helperControls.csproj │ │ │ ├── packages.config │ │ │ ├── uc_pagination.xaml │ │ │ └── uc_pagination.xaml.cs │ ├── RoundButtonDemo │ │ ├── RoundButtonDemo.sln │ │ └── RoundButtonDemo │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── RoundButton.xaml │ │ │ ├── RoundButton.xaml.cs │ │ │ ├── RoundButtonDemo.csproj │ │ │ └── Themes │ │ │ ├── Generic.xaml │ │ │ ├── SimpleRoundButton.cs │ │ │ └── SimpleRoundButttonRD.xaml │ └── ToggleButton │ │ ├── ToggleBtnDemo │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── ToggleBtnDemo.csproj │ │ ├── WPFToggleButton.sln │ │ └── WPFToggleButton │ │ ├── App.config │ │ ├── Controls │ │ ├── SimpleToggleButton.cs │ │ └── SimpleToggleButtonRD.xaml │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Themes │ │ └── Generic.xaml │ │ └── WPFToggleButton.csproj ├── GENERAL │ ├── AmazonScraping │ │ ├── AmazonScraping.csproj │ │ ├── AmazonScraping.sln │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── MainVM.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── ScrapWindow.xaml │ │ ├── ScrapWindow.xaml.cs │ │ └── WebMining.xlsm │ ├── DashboardDemo │ │ ├── .cr │ │ │ └── personal │ │ │ │ └── FavoritesList │ │ │ │ └── List.xml │ │ ├── Haley.FlexiMenuTest.sln │ │ └── Haley.FlexiMenuTest │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ ├── avatar.png │ │ │ ├── background.jpg │ │ │ └── hippo.png │ │ │ ├── Haley.FlexiMenuTest.csproj │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Notes.txt │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── ViewModels │ │ │ └── MainViewModel.cs │ │ │ ├── Views │ │ │ ├── DashBoardHome.xaml │ │ │ ├── DashBoardHome.xaml.cs │ │ │ ├── IntroView.xaml │ │ │ ├── IntroView.xaml.cs │ │ │ ├── WorkingView.xaml │ │ │ └── WorkingView.xaml.cs │ │ │ └── packages.config │ ├── Globalization.Demo │ │ ├── .cr │ │ │ └── personal │ │ │ │ ├── Editor │ │ │ │ └── Painting │ │ │ │ │ └── Structural Highlighting.xml │ │ │ │ └── FavoritesList │ │ │ │ └── List.xml │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Globalization.External │ │ │ ├── ExternalControl.xaml │ │ │ ├── ExternalControl.xaml.cs │ │ │ ├── Globalization.External.csproj │ │ │ ├── Langresources │ │ │ │ ├── Language.Designer.cs │ │ │ │ ├── Language.resx │ │ │ │ ├── Language.ta.Designer.cs │ │ │ │ └── Language.ta.resx │ │ │ ├── Notes.txt │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── app.config │ │ │ └── packages.config │ │ ├── Globalization.Test.csproj │ │ ├── Globalization.Test.sln │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Notes.txt │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Resources.ta.Designer.cs │ │ │ ├── Resources.ta.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── packages.config │ ├── InteractiveMap │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── Assets │ │ │ ├── world.svg │ │ │ ├── world_map.xaml │ │ │ ├── world_new.svg │ │ │ └── world_new.xaml │ │ ├── Controls │ │ │ ├── MapHolder.xaml │ │ │ └── MapHolder.xaml.cs │ │ ├── InteractiveMap.csproj │ │ ├── InteractiveMap.sln │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── ViewModel │ │ │ └── MainVM.cs │ ├── NotificationDemo │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DialogVM.cs │ │ ├── InputTest01.xaml │ │ ├── InputTest01.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Notes.txt │ │ ├── NotificationDemo.csproj │ │ ├── NotificationDemo.sln │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── packages.config │ ├── PopUpDemo │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── CustomPopUp.xaml │ │ ├── CustomPopUp.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── PopUpDemo.csproj │ │ └── PopUpDemo.sln │ ├── SettingsPage │ │ └── SettingsPageDemo │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Controls │ │ │ ├── CalculatorPage.xaml │ │ │ ├── CalculatorPage.xaml.cs │ │ │ ├── CredentialSettings.xaml │ │ │ ├── CredentialSettings.xaml.cs │ │ │ ├── GeneralSettings.xaml │ │ │ ├── GeneralSettings.xaml.cs │ │ │ ├── SettingsPage.xaml │ │ │ └── SettingsPage.xaml.cs │ │ │ ├── Enums │ │ │ ├── LanguageEnum.cs │ │ │ ├── TargetEnum.cs │ │ │ ├── ThemeEnum.cs │ │ │ └── UnitEnum.cs │ │ │ ├── MainVM.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Model │ │ │ ├── AllShapes.cs │ │ │ ├── GeneralConfig.cs │ │ │ └── SecretConfig.cs │ │ │ ├── SettingsPageDemo.csproj │ │ │ ├── SettingsPageDemo.sln │ │ │ ├── ViewEnum.cs │ │ │ └── ViewModels │ │ │ └── SettingsVM.cs │ ├── ThemeService │ │ ├── ThemeExternalTest │ │ │ ├── EntryModule.cs │ │ │ ├── ExternalControl.xaml │ │ │ ├── ExternalControl.xaml.cs │ │ │ ├── ExternalWindwo.xaml │ │ │ ├── ExternalWindwo.xaml.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── Skins │ │ │ │ ├── Skin01.xaml │ │ │ │ ├── Skin02.xaml │ │ │ │ └── Skin03.xaml │ │ │ └── ThemeExternalTest.csproj │ │ ├── ThemeServiceTest.sln │ │ └── ThemeServiceTest │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── Skins │ │ │ └── themegroup2 │ │ │ │ ├── Style01.xaml │ │ │ │ └── Style02.xaml │ │ │ ├── ThemeManagerDic.xaml │ │ │ └── ThemeServiceTest.csproj │ └── WPFOrgChart │ │ ├── WPFOrgChart.sln │ │ └── WPFOrgChart │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── Controls │ │ ├── DataEntryPage.xaml │ │ ├── DataEntryPage.xaml.cs │ │ ├── OrgChartPage.xaml │ │ └── OrgChartPage.xaml.cs │ │ ├── Converters │ │ └── FilteredRoleConverter.cs │ │ ├── Enums │ │ ├── CurrentView.cs │ │ └── TargetType.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Models │ │ ├── Department.cs │ │ ├── OrgBaseModel.cs │ │ ├── OrgConfig.cs │ │ ├── Person.cs │ │ └── Role.cs │ │ ├── TabPages │ │ ├── AddDepartment.xaml │ │ ├── AddDepartment.xaml.cs │ │ ├── AddPerson.xaml │ │ ├── AddPerson.xaml.cs │ │ ├── AddRole.xaml │ │ └── AddRole.xaml.cs │ │ ├── ViewModels │ │ └── MainVM.cs │ │ └── WPFOrgChart.csproj ├── LOGINSAMPLES │ ├── GoogleAuth │ │ ├── AuthService │ │ │ ├── AuthService.csproj │ │ │ └── TokenService.cs │ │ ├── GoogleAuth.sln │ │ └── GoogleAuth │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Controllers │ │ │ └── AuthController.cs │ │ │ ├── GoogleAuth.csproj │ │ │ ├── Services │ │ │ └── Globals.cs │ │ │ ├── View │ │ │ ├── AuthWindow.xaml │ │ │ ├── AuthWindow.xaml.cs │ │ │ ├── HomeWindow.xaml │ │ │ └── HomeWindow.xaml.cs │ │ │ └── ViewModel │ │ │ ├── AuthVM.cs │ │ │ └── HomeVM.cs │ ├── LoginControl │ │ ├── LoginControl.sln │ │ ├── LoginControl │ │ │ ├── App.config │ │ │ ├── AuthenticationViewModel.cs │ │ │ ├── Authenticationwindow.xaml │ │ │ ├── Authenticationwindow.xaml.cs │ │ │ ├── Controls │ │ │ │ ├── LoginHelperPage.xaml │ │ │ │ ├── LoginHelperPage.xaml.cs │ │ │ │ ├── LoginPage.xaml │ │ │ │ ├── LoginPage.xaml.cs │ │ │ │ ├── SignupPage.xaml │ │ │ │ ├── SignupPage.xaml.cs │ │ │ │ ├── WelcomeView.xaml │ │ │ │ └── WelcomeView.xaml.cs │ │ │ ├── Dictionaries │ │ │ │ └── LCRD.xaml │ │ │ ├── Entry.cs │ │ │ ├── Images │ │ │ │ ├── 05-Soft-Gradient-Background-copy-1.jpg │ │ │ │ ├── 17-Soft-Gradient-Background-copy-1.jpg │ │ │ │ ├── 19-Soft-Gradient-Background-copy-1.jpg │ │ │ │ ├── 20-Soft-Gradient-Background-copy-1.jpg │ │ │ │ ├── polygon-shapes-beginner.jpg │ │ │ │ └── twisted-light-background.jpg │ │ │ ├── LoginControl.csproj │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ └── ViewEnums.cs │ │ ├── MainAppSample │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── CredentialHolder.cs │ │ │ ├── MainAppSample.csproj │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ └── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ ├── MigrationBackup │ │ │ ├── 2e1d1bfe │ │ │ │ └── LoginControl │ │ │ │ │ ├── LoginControl.csproj │ │ │ │ │ ├── NuGetUpgradeLog.html │ │ │ │ │ └── packages.config │ │ │ └── 91542d68 │ │ │ │ └── MainAppSample │ │ │ │ ├── MainAppSample.csproj │ │ │ │ ├── NuGetUpgradeLog.html │ │ │ │ └── packages.config │ │ └── __Input │ │ │ ├── 05-Soft-Gradient-Background-copy-1.jpg │ │ │ ├── 17-Soft-Gradient-Background-copy-1.jpg │ │ │ ├── 19-Soft-Gradient-Background-copy-1.jpg │ │ │ ├── 20-Soft-Gradient-Background-copy-1.jpg │ │ │ ├── polygon-shapes-beginner.jpg │ │ │ └── twisted-light-background.jpg │ └── LoginExample2 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── LoginExample2.csproj │ │ ├── LoginExample2.sln │ │ ├── MainWindow.xaml │ │ └── MainWindow.xaml.cs └── MVVM │ ├── QuickMVVMSetup │ ├── QuickMVVMSetup.sln │ └── QuickMVVMSetup │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainVM.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Person.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ └── QuickMVVMSetup.csproj │ ├── SimpleCustomerData │ ├── 01.webp │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── SimpleCustomerData.csproj │ ├── SimpleCustomerData.sln │ └── cctvtest.jpg │ └── SimpleNavigation │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── MainVM.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── PageId.cs │ ├── Pages │ ├── PageA.xaml │ ├── PageA.xaml.cs │ ├── PageB.xaml │ ├── PageB.xaml.cs │ ├── PageC.xaml │ ├── PageC.xaml.cs │ ├── PageD.xaml │ └── PageD.xaml.cs │ ├── SimpleNavigation.csproj │ └── SimpleNavigation.sln └── _MockUps ├── Hyperlink Mockup.pdf └── readme /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/PaginationWPF/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/.vs/PaginationWPF/v16/.suo -------------------------------------------------------------------------------- /.vs/Tutorials/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/.vs/Tutorials/v16/.suo -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /Asset 7@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/Asset 7@3x.png -------------------------------------------------------------------------------- /EnvironmentSettings.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/EnvironmentSettings.vssettings -------------------------------------------------------------------------------- /Excel/VBA/MultipleCombination/excel-multiple-combination-of-cells-values.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/Excel/VBA/MultipleCombination/excel-multiple-combination-of-cells-values.xlsm -------------------------------------------------------------------------------- /Fira_Code_v6.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/Fira_Code_v6.2.zip -------------------------------------------------------------------------------- /VANILLA/HTML+CSS/SideNavBar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VANILLA/HTML+CSS/SideNavBar/index.html -------------------------------------------------------------------------------- /VANILLA/HTML+CSS/SideNavBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VANILLA/HTML+CSS/SideNavBar/index.js -------------------------------------------------------------------------------- /VANILLA/HTML+CSS/SideNavBar/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VANILLA/HTML+CSS/SideNavBar/manifest.json -------------------------------------------------------------------------------- /VANILLA/HTML+CSS/SideNavBar/resources/abstract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VANILLA/HTML+CSS/SideNavBar/resources/abstract.png -------------------------------------------------------------------------------- /VANILLA/HTML+CSS/SideNavBar/resources/dp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VANILLA/HTML+CSS/SideNavBar/resources/dp.jpg -------------------------------------------------------------------------------- /VANILLA/HTML+CSS/SideNavBar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VANILLA/HTML+CSS/SideNavBar/style.css -------------------------------------------------------------------------------- /VANILLA/HTML+CSS/SimpleLoadingAnimation/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VANILLA/HTML+CSS/SimpleLoadingAnimation/index.css -------------------------------------------------------------------------------- /VANILLA/HTML+CSS/SimpleLoadingAnimation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VANILLA/HTML+CSS/SimpleLoadingAnimation/index.html -------------------------------------------------------------------------------- /VUEJS/InteractiveClickableMap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/InteractiveClickableMap/.gitignore -------------------------------------------------------------------------------- /VUEJS/InteractiveClickableMap/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /VUEJS/InteractiveClickableMap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/InteractiveClickableMap/README.md -------------------------------------------------------------------------------- /VUEJS/InteractiveClickableMap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/InteractiveClickableMap/index.html -------------------------------------------------------------------------------- /VUEJS/InteractiveClickableMap/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/InteractiveClickableMap/package-lock.json -------------------------------------------------------------------------------- /VUEJS/InteractiveClickableMap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/InteractiveClickableMap/package.json -------------------------------------------------------------------------------- /VUEJS/InteractiveClickableMap/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/InteractiveClickableMap/public/vite.svg -------------------------------------------------------------------------------- /VUEJS/InteractiveClickableMap/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/InteractiveClickableMap/src/App.vue -------------------------------------------------------------------------------- /VUEJS/InteractiveClickableMap/src/assets/india.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/InteractiveClickableMap/src/assets/india.svg -------------------------------------------------------------------------------- /VUEJS/InteractiveClickableMap/src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/InteractiveClickableMap/src/assets/vue.svg -------------------------------------------------------------------------------- /VUEJS/InteractiveClickableMap/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/InteractiveClickableMap/src/main.js -------------------------------------------------------------------------------- /VUEJS/InteractiveClickableMap/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/InteractiveClickableMap/src/style.css -------------------------------------------------------------------------------- /VUEJS/InteractiveClickableMap/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/InteractiveClickableMap/vite.config.js -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/.eslintrc-auto-import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/.eslintrc-auto-import.json -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/.gitignore -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/.prettierrc.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/README.md -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/auto-imports.d.ts -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/index.html -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/package-lock.json -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/package.json -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/postcss.config.cjs -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/public/vite.svg -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/src/@Pages/AuthPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/src/@Pages/AuthPage.vue -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/src/@Pages/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/src/@Pages/Dashboard.vue -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/src/@Pages/DemoPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/src/@Pages/DemoPage.vue -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/src/@Pages/NotFoundPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/src/@Pages/NotFoundPage.vue -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/src/@Stores/authStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/src/@Stores/authStore.ts -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/src/App.vue -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/src/assets/avtr_boy_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/src/assets/avtr_boy_02.jpg -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/src/assets/vue.svg -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/src/main.ts -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/src/routes/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/src/routes/router.ts -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/src/style.css -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/src/vite-env.d.ts -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/tailwind.config.cjs -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/tsconfig.json -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/tsconfig.node.json -------------------------------------------------------------------------------- /VUEJS/ViteVueSetup2023/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/ViteVueSetup2023/vite.config.ts -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/.gitignore -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/README.md -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/index.html -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/package-lock.json -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/package.json -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/public/vite.svg -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/public/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/public/vue.svg -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/src/App.vue -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/src/assets/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/src/assets/dragon.png -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/src/assets/india.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/src/assets/india.svg -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/src/components/IndiaMap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/src/components/IndiaMap.vue -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/src/components/PageNotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/src/components/PageNotFound.vue -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/src/components/demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/src/components/demo.vue -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/src/main.ts -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/src/routes.ts -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/src/stores/index.ts -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/src/style.css -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/src/vite-env.d.ts -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/tsconfig.json -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/tsconfig.node.json -------------------------------------------------------------------------------- /VUEJS/Vue3Beginners/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/VUEJS/Vue3Beginners/vite.config.ts -------------------------------------------------------------------------------- /WPF/ANIMATIONS/BlinkingAnimation/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/BlinkingAnimation/App.xaml -------------------------------------------------------------------------------- /WPF/ANIMATIONS/BlinkingAnimation/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/BlinkingAnimation/App.xaml.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/BlinkingAnimation/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/BlinkingAnimation/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/BlinkingAnimation/BlinkingAnimation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/BlinkingAnimation/BlinkingAnimation.csproj -------------------------------------------------------------------------------- /WPF/ANIMATIONS/BlinkingAnimation/BlinkingAnimation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/BlinkingAnimation/BlinkingAnimation.sln -------------------------------------------------------------------------------- /WPF/ANIMATIONS/BlinkingAnimation/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/BlinkingAnimation/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/ANIMATIONS/BlinkingAnimation/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/BlinkingAnimation/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/BlinkingAnimation/NeonText.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/BlinkingAnimation/NeonText.xaml -------------------------------------------------------------------------------- /WPF/ANIMATIONS/BlinkingAnimation/NeonText.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/BlinkingAnimation/NeonText.xaml.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation.sln -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/App.config -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/App.xaml -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/App.xaml.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/DoubleKFType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/DoubleKFType.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/LoadingAnimation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/LoadingAnimation.csproj -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/LoadingControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/LoadingControl.xaml -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/LoadingControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/LoadingControl.xaml.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation/LoadingAnimation/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation01/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation01/App.xaml -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation01/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation01/App.xaml.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation01/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation01/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation01/Controls/AnimatedRectangle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation01/Controls/AnimatedRectangle.xaml -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation01/Controls/AnimatedRectangle.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation01/Controls/AnimatedRectangle.xaml.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation01/LoadingAnimation01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation01/LoadingAnimation01.csproj -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation01/LoadingAnimation01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation01/LoadingAnimation01.sln -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation01/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation01/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation01/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation01/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation02/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation02/App.xaml -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation02/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation02/App.xaml.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation02/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation02/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation02/DonutSpinner.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation02/DonutSpinner.xaml -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation02/DonutSpinner.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation02/DonutSpinner.xaml.cs -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation02/LoadingAnimation02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation02/LoadingAnimation02.csproj -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation02/LoadingAnimation02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation02/LoadingAnimation02.sln -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation02/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation02/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/ANIMATIONS/LoadingAnimation02/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/ANIMATIONS/LoadingAnimation02/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/CustomControlButtons/CustomControlButtons.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/CustomControlButtons/CustomControlButtons.sln -------------------------------------------------------------------------------- /WPF/CONTROLS/CustomControlButtons/CustomControlButtons/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/CustomControlButtons/CustomControlButtons/App.config -------------------------------------------------------------------------------- /WPF/CONTROLS/CustomControlButtons/CustomControlButtons/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/CustomControlButtons/CustomControlButtons/App.xaml -------------------------------------------------------------------------------- /WPF/CONTROLS/CustomControlButtons/CustomControlButtons/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/CustomControlButtons/CustomControlButtons/App.xaml.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/CustomControlButtons/CustomControlButtons/CustomControlButtons.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/CustomControlButtons/CustomControlButtons/CustomControlButtons.csproj -------------------------------------------------------------------------------- /WPF/CONTROLS/CustomControlButtons/CustomControlButtons/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/CustomControlButtons/CustomControlButtons/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/CONTROLS/CustomControlButtons/CustomControlButtons/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/CustomControlButtons/CustomControlButtons/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/CustomControlButtons/CustomControlButtons/NewWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/CustomControlButtons/CustomControlButtons/NewWindow.xaml -------------------------------------------------------------------------------- /WPF/CONTROLS/CustomControlButtons/CustomControlButtons/NewWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/CustomControlButtons/CustomControlButtons/NewWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/CustomControlButtons/CustomControlButtons/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/CustomControlButtons/CustomControlButtons/Notes.txt -------------------------------------------------------------------------------- /WPF/CONTROLS/CustomControlButtons/CustomControlButtons/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/CustomControlButtons/CustomControlButtons/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/CustomControlButtons/CustomControlButtons/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/CustomControlButtons/CustomControlButtons/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/CustomControlButtons/CustomControlButtons/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/CustomControlButtons/CustomControlButtons/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF/CONTROLS/CustomControlButtons/CustomControlButtons/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/CustomControlButtons/CustomControlButtons/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/CustomControlButtons/CustomControlButtons/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/CustomControlButtons/CustomControlButtons/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF/CONTROLS/CustomControlButtons/CustomControlButtons/minus_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/CustomControlButtons/CustomControlButtons/minus_medium.png -------------------------------------------------------------------------------- /WPF/CONTROLS/CustomControlButtons/CustomControlButtons/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/CustomControlButtons/CustomControlButtons/packages.config -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/.gitattributes -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/.gitignore -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/PaginationWPF.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/PaginationWPF.sln -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/PaginationWPF/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/PaginationWPF/App.config -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/PaginationWPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/PaginationWPF/App.xaml -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/PaginationWPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/PaginationWPF/App.xaml.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/PaginationWPF/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/PaginationWPF/Converters.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/PaginationWPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/PaginationWPF/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/PaginationWPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/PaginationWPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/PaginationWPF/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/PaginationWPF/Notes.txt -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/PaginationWPF/PaginationWPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/PaginationWPF/PaginationWPF.csproj -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/PaginationWPF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/PaginationWPF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/PaginationWPF/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/PaginationWPF/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/PaginationWPF/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/PaginationWPF/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/PaginationWPF/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/PaginationWPF/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/PaginationWPF/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/PaginationWPF/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/PaginationWPF/Viewmodels/VMMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/PaginationWPF/Viewmodels/VMMain.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/PaginationWPF/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/PaginationWPF/packages.config -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/helperControls/Models/PaginationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/helperControls/Models/PaginationModel.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/helperControls/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/helperControls/Notes.txt -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/helperControls/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/helperControls/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/helperControls/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/helperControls/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/helperControls/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/helperControls/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/helperControls/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/helperControls/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/helperControls/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/helperControls/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/helperControls/ViewModel/VMPagination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/helperControls/ViewModel/VMPagination.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/helperControls/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/helperControls/app.config -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/helperControls/helperControls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/helperControls/helperControls.csproj -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/helperControls/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/helperControls/packages.config -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/helperControls/uc_pagination.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/helperControls/uc_pagination.xaml -------------------------------------------------------------------------------- /WPF/CONTROLS/PaginationControl/helperControls/uc_pagination.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/PaginationControl/helperControls/uc_pagination.xaml.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo.sln -------------------------------------------------------------------------------- /WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/App.config -------------------------------------------------------------------------------- /WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/App.xaml -------------------------------------------------------------------------------- /WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/App.xaml.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/RoundButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/RoundButton.xaml -------------------------------------------------------------------------------- /WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/RoundButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/RoundButton.xaml.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/RoundButtonDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/RoundButtonDemo.csproj -------------------------------------------------------------------------------- /WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/Themes/Generic.xaml -------------------------------------------------------------------------------- /WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/Themes/SimpleRoundButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/Themes/SimpleRoundButton.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/Themes/SimpleRoundButttonRD.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/RoundButtonDemo/RoundButtonDemo/Themes/SimpleRoundButttonRD.xaml -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/ToggleBtnDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/ToggleBtnDemo/App.config -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/ToggleBtnDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/ToggleBtnDemo/App.xaml -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/ToggleBtnDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/ToggleBtnDemo/App.xaml.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/ToggleBtnDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/ToggleBtnDemo/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/ToggleBtnDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/ToggleBtnDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/ToggleBtnDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/ToggleBtnDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/ToggleBtnDemo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/ToggleBtnDemo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/ToggleBtnDemo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/ToggleBtnDemo/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/ToggleBtnDemo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/ToggleBtnDemo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/ToggleBtnDemo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/ToggleBtnDemo/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/ToggleBtnDemo/ToggleBtnDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/ToggleBtnDemo/ToggleBtnDemo.csproj -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/WPFToggleButton.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/WPFToggleButton.sln -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/WPFToggleButton/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/WPFToggleButton/App.config -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/WPFToggleButton/Controls/SimpleToggleButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/WPFToggleButton/Controls/SimpleToggleButton.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/WPFToggleButton/Controls/SimpleToggleButtonRD.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/WPFToggleButton/Controls/SimpleToggleButtonRD.xaml -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/WPFToggleButton/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/WPFToggleButton/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/WPFToggleButton/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/WPFToggleButton/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/WPFToggleButton/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/WPFToggleButton/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/WPFToggleButton/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/WPFToggleButton/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/WPFToggleButton/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/WPFToggleButton/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/WPFToggleButton/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/WPFToggleButton/Themes/Generic.xaml -------------------------------------------------------------------------------- /WPF/CONTROLS/ToggleButton/WPFToggleButton/WPFToggleButton.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/CONTROLS/ToggleButton/WPFToggleButton/WPFToggleButton.csproj -------------------------------------------------------------------------------- /WPF/GENERAL/AmazonScraping/AmazonScraping.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/AmazonScraping/AmazonScraping.csproj -------------------------------------------------------------------------------- /WPF/GENERAL/AmazonScraping/AmazonScraping.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/AmazonScraping/AmazonScraping.sln -------------------------------------------------------------------------------- /WPF/GENERAL/AmazonScraping/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/AmazonScraping/App.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/AmazonScraping/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/AmazonScraping/App.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/AmazonScraping/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/AmazonScraping/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/GENERAL/AmazonScraping/MainVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/AmazonScraping/MainVM.cs -------------------------------------------------------------------------------- /WPF/GENERAL/AmazonScraping/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/AmazonScraping/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/AmazonScraping/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/AmazonScraping/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/AmazonScraping/ScrapWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/AmazonScraping/ScrapWindow.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/AmazonScraping/ScrapWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/AmazonScraping/ScrapWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/AmazonScraping/WebMining.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/AmazonScraping/WebMining.xlsm -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/.cr/personal/FavoritesList/List.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/.cr/personal/FavoritesList/List.xml -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest.sln -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/App.config -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/App.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/App.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Assets/avatar.png -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Assets/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Assets/background.jpg -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Assets/hippo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Assets/hippo.png -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Haley.FlexiMenuTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Haley.FlexiMenuTest.csproj -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Notes.txt -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Views/DashBoardHome.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Views/DashBoardHome.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Views/DashBoardHome.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Views/DashBoardHome.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Views/IntroView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Views/IntroView.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Views/IntroView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Views/IntroView.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Views/WorkingView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Views/WorkingView.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Views/WorkingView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/Views/WorkingView.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/DashboardDemo/Haley.FlexiMenuTest/packages.config -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/.cr/personal/Editor/Painting/Structural Highlighting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/.cr/personal/Editor/Painting/Structural Highlighting.xml -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/.cr/personal/FavoritesList/List.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/.cr/personal/FavoritesList/List.xml -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/App.config -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/App.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/App.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Globalization.External/ExternalControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Globalization.External/ExternalControl.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Globalization.External/ExternalControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Globalization.External/ExternalControl.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Globalization.External/Globalization.External.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Globalization.External/Globalization.External.csproj -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Globalization.External/Langresources/Language.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Globalization.External/Langresources/Language.Designer.cs -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Globalization.External/Langresources/Language.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Globalization.External/Langresources/Language.resx -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Globalization.External/Langresources/Language.ta.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Globalization.External/Langresources/Language.ta.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Globalization.External/Langresources/Language.ta.resx -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Globalization.External/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Globalization.External/Notes.txt -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Globalization.External/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Globalization.External/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Globalization.External/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Globalization.External/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Globalization.External/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Globalization.External/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Globalization.External/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Globalization.External/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Globalization.External/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Globalization.External/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Globalization.External/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Globalization.External/app.config -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Globalization.External/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Globalization.External/packages.config -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Globalization.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Globalization.Test.csproj -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Globalization.Test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Globalization.Test.sln -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Notes.txt -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Properties/Resources.ta.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Properties/Resources.ta.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Properties/Resources.ta.resx -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF/GENERAL/Globalization.Demo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/Globalization.Demo/packages.config -------------------------------------------------------------------------------- /WPF/GENERAL/InteractiveMap/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/InteractiveMap/App.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/InteractiveMap/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/InteractiveMap/App.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/InteractiveMap/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/InteractiveMap/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/GENERAL/InteractiveMap/Assets/world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/InteractiveMap/Assets/world.svg -------------------------------------------------------------------------------- /WPF/GENERAL/InteractiveMap/Assets/world_map.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/InteractiveMap/Assets/world_map.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/InteractiveMap/Assets/world_new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/InteractiveMap/Assets/world_new.svg -------------------------------------------------------------------------------- /WPF/GENERAL/InteractiveMap/Assets/world_new.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/InteractiveMap/Assets/world_new.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/InteractiveMap/Controls/MapHolder.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/InteractiveMap/Controls/MapHolder.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/InteractiveMap/Controls/MapHolder.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/InteractiveMap/Controls/MapHolder.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/InteractiveMap/InteractiveMap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/InteractiveMap/InteractiveMap.csproj -------------------------------------------------------------------------------- /WPF/GENERAL/InteractiveMap/InteractiveMap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/InteractiveMap/InteractiveMap.sln -------------------------------------------------------------------------------- /WPF/GENERAL/InteractiveMap/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/InteractiveMap/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/InteractiveMap/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/InteractiveMap/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/InteractiveMap/ViewModel/MainVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/InteractiveMap/ViewModel/MainVM.cs -------------------------------------------------------------------------------- /WPF/GENERAL/NotificationDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/NotificationDemo/App.config -------------------------------------------------------------------------------- /WPF/GENERAL/NotificationDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/NotificationDemo/App.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/NotificationDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/NotificationDemo/App.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/NotificationDemo/DialogVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/NotificationDemo/DialogVM.cs -------------------------------------------------------------------------------- /WPF/GENERAL/NotificationDemo/InputTest01.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/NotificationDemo/InputTest01.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/NotificationDemo/InputTest01.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/NotificationDemo/InputTest01.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/NotificationDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/NotificationDemo/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/NotificationDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/NotificationDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/NotificationDemo/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/NotificationDemo/Notes.txt -------------------------------------------------------------------------------- /WPF/GENERAL/NotificationDemo/NotificationDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/NotificationDemo/NotificationDemo.csproj -------------------------------------------------------------------------------- /WPF/GENERAL/NotificationDemo/NotificationDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/NotificationDemo/NotificationDemo.sln -------------------------------------------------------------------------------- /WPF/GENERAL/NotificationDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/NotificationDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/GENERAL/NotificationDemo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/NotificationDemo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF/GENERAL/NotificationDemo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/NotificationDemo/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF/GENERAL/NotificationDemo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/NotificationDemo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF/GENERAL/NotificationDemo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/NotificationDemo/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF/GENERAL/NotificationDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/NotificationDemo/packages.config -------------------------------------------------------------------------------- /WPF/GENERAL/PopUpDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/PopUpDemo/App.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/PopUpDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/PopUpDemo/App.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/PopUpDemo/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/PopUpDemo/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/GENERAL/PopUpDemo/CustomPopUp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/PopUpDemo/CustomPopUp.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/PopUpDemo/CustomPopUp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/PopUpDemo/CustomPopUp.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/PopUpDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/PopUpDemo/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/PopUpDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/PopUpDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/PopUpDemo/PopUpDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/PopUpDemo/PopUpDemo.csproj -------------------------------------------------------------------------------- /WPF/GENERAL/PopUpDemo/PopUpDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/PopUpDemo/PopUpDemo.sln -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/App.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/App.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/Controls/CalculatorPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/Controls/CalculatorPage.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/Controls/CalculatorPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/Controls/CalculatorPage.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/Controls/CredentialSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/Controls/CredentialSettings.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/Controls/CredentialSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/Controls/CredentialSettings.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/Controls/GeneralSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/Controls/GeneralSettings.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/Controls/GeneralSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/Controls/GeneralSettings.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/Controls/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/Controls/SettingsPage.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/Controls/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/Controls/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/Enums/LanguageEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/Enums/LanguageEnum.cs -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/Enums/TargetEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/Enums/TargetEnum.cs -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/Enums/ThemeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/Enums/ThemeEnum.cs -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/Enums/UnitEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/Enums/UnitEnum.cs -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/MainVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/MainVM.cs -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/Model/AllShapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/Model/AllShapes.cs -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/Model/GeneralConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/Model/GeneralConfig.cs -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/Model/SecretConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/Model/SecretConfig.cs -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/SettingsPageDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/SettingsPageDemo.csproj -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/SettingsPageDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/SettingsPageDemo.sln -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/ViewEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/ViewEnum.cs -------------------------------------------------------------------------------- /WPF/GENERAL/SettingsPage/SettingsPageDemo/ViewModels/SettingsVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/SettingsPage/SettingsPageDemo/ViewModels/SettingsVM.cs -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeExternalTest/EntryModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeExternalTest/EntryModule.cs -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeExternalTest/ExternalControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeExternalTest/ExternalControl.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeExternalTest/ExternalControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeExternalTest/ExternalControl.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeExternalTest/ExternalWindwo.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeExternalTest/ExternalWindwo.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeExternalTest/ExternalWindwo.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeExternalTest/ExternalWindwo.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeExternalTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeExternalTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeExternalTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeExternalTest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeExternalTest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeExternalTest/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeExternalTest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeExternalTest/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeExternalTest/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeExternalTest/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeExternalTest/Skins/Skin01.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeExternalTest/Skins/Skin01.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeExternalTest/Skins/Skin02.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeExternalTest/Skins/Skin02.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeExternalTest/Skins/Skin03.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeExternalTest/Skins/Skin03.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeExternalTest/ThemeExternalTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeExternalTest/ThemeExternalTest.csproj -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeServiceTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeServiceTest.sln -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeServiceTest/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeServiceTest/App.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeServiceTest/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeServiceTest/App.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeServiceTest/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeServiceTest/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeServiceTest/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeServiceTest/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeServiceTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeServiceTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeServiceTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeServiceTest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeServiceTest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeServiceTest/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeServiceTest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeServiceTest/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeServiceTest/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeServiceTest/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeServiceTest/Skins/themegroup2/Style01.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeServiceTest/Skins/themegroup2/Style01.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeServiceTest/Skins/themegroup2/Style02.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeServiceTest/Skins/themegroup2/Style02.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeServiceTest/ThemeManagerDic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeServiceTest/ThemeManagerDic.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/ThemeService/ThemeServiceTest/ThemeServiceTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/ThemeService/ThemeServiceTest/ThemeServiceTest.csproj -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart.sln -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/App.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/App.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/Controls/DataEntryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/Controls/DataEntryPage.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/Controls/DataEntryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/Controls/DataEntryPage.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/Controls/OrgChartPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/Controls/OrgChartPage.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/Controls/OrgChartPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/Controls/OrgChartPage.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/Converters/FilteredRoleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/Converters/FilteredRoleConverter.cs -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/Enums/CurrentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/Enums/CurrentView.cs -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/Enums/TargetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/Enums/TargetType.cs -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/Models/Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/Models/Department.cs -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/Models/OrgBaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/Models/OrgBaseModel.cs -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/Models/OrgConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/Models/OrgConfig.cs -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/Models/Person.cs -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/Models/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/Models/Role.cs -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/TabPages/AddDepartment.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/TabPages/AddDepartment.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/TabPages/AddDepartment.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/TabPages/AddDepartment.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/TabPages/AddPerson.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/TabPages/AddPerson.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/TabPages/AddPerson.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/TabPages/AddPerson.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/TabPages/AddRole.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/TabPages/AddRole.xaml -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/TabPages/AddRole.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/TabPages/AddRole.xaml.cs -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/ViewModels/MainVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/ViewModels/MainVM.cs -------------------------------------------------------------------------------- /WPF/GENERAL/WPFOrgChart/WPFOrgChart/WPFOrgChart.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/GENERAL/WPFOrgChart/WPFOrgChart/WPFOrgChart.csproj -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/GoogleAuth/AuthService/AuthService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/GoogleAuth/AuthService/AuthService.csproj -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/GoogleAuth/AuthService/TokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/GoogleAuth/AuthService/TokenService.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth.sln -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/App.xaml -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/App.xaml.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/Controllers/AuthController.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/GoogleAuth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/GoogleAuth.csproj -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/Services/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/Services/Globals.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/View/AuthWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/View/AuthWindow.xaml -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/View/AuthWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/View/AuthWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/View/HomeWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/View/HomeWindow.xaml -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/View/HomeWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/View/HomeWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/ViewModel/AuthVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/ViewModel/AuthVM.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/ViewModel/HomeVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/GoogleAuth/GoogleAuth/ViewModel/HomeVM.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl.sln -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/App.config -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/AuthenticationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/AuthenticationViewModel.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Authenticationwindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Authenticationwindow.xaml -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Authenticationwindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Authenticationwindow.xaml.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Controls/LoginHelperPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Controls/LoginHelperPage.xaml -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Controls/LoginHelperPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Controls/LoginHelperPage.xaml.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Controls/LoginPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Controls/LoginPage.xaml -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Controls/LoginPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Controls/LoginPage.xaml.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Controls/SignupPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Controls/SignupPage.xaml -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Controls/SignupPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Controls/SignupPage.xaml.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Controls/WelcomeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Controls/WelcomeView.xaml -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Controls/WelcomeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Controls/WelcomeView.xaml.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Dictionaries/LCRD.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Dictionaries/LCRD.xaml -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Entry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Entry.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Images/05-Soft-Gradient-Background-copy-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Images/05-Soft-Gradient-Background-copy-1.jpg -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Images/17-Soft-Gradient-Background-copy-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Images/17-Soft-Gradient-Background-copy-1.jpg -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Images/19-Soft-Gradient-Background-copy-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Images/19-Soft-Gradient-Background-copy-1.jpg -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Images/20-Soft-Gradient-Background-copy-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Images/20-Soft-Gradient-Background-copy-1.jpg -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Images/polygon-shapes-beginner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Images/polygon-shapes-beginner.jpg -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Images/twisted-light-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Images/twisted-light-background.jpg -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/LoginControl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/LoginControl.csproj -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/LoginControl/ViewEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/LoginControl/ViewEnums.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MainAppSample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MainAppSample/App.config -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MainAppSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MainAppSample/App.xaml -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MainAppSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MainAppSample/App.xaml.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MainAppSample/CredentialHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MainAppSample/CredentialHolder.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MainAppSample/MainAppSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MainAppSample/MainAppSample.csproj -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MainAppSample/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MainAppSample/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MainAppSample/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MainAppSample/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MainAppSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MainAppSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MainAppSample/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MainAppSample/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MainAppSample/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MainAppSample/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MainAppSample/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MainAppSample/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MainAppSample/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MainAppSample/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MigrationBackup/2e1d1bfe/LoginControl/LoginControl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MigrationBackup/2e1d1bfe/LoginControl/LoginControl.csproj -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MigrationBackup/2e1d1bfe/LoginControl/NuGetUpgradeLog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MigrationBackup/2e1d1bfe/LoginControl/NuGetUpgradeLog.html -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MigrationBackup/2e1d1bfe/LoginControl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MigrationBackup/2e1d1bfe/LoginControl/packages.config -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MigrationBackup/91542d68/MainAppSample/MainAppSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MigrationBackup/91542d68/MainAppSample/MainAppSample.csproj -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MigrationBackup/91542d68/MainAppSample/NuGetUpgradeLog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MigrationBackup/91542d68/MainAppSample/NuGetUpgradeLog.html -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/MigrationBackup/91542d68/MainAppSample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/MigrationBackup/91542d68/MainAppSample/packages.config -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/__Input/05-Soft-Gradient-Background-copy-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/__Input/05-Soft-Gradient-Background-copy-1.jpg -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/__Input/17-Soft-Gradient-Background-copy-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/__Input/17-Soft-Gradient-Background-copy-1.jpg -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/__Input/19-Soft-Gradient-Background-copy-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/__Input/19-Soft-Gradient-Background-copy-1.jpg -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/__Input/20-Soft-Gradient-Background-copy-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/__Input/20-Soft-Gradient-Background-copy-1.jpg -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/__Input/polygon-shapes-beginner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/__Input/polygon-shapes-beginner.jpg -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginControl/__Input/twisted-light-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginControl/__Input/twisted-light-background.jpg -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginExample2/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginExample2/App.xaml -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginExample2/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginExample2/App.xaml.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginExample2/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginExample2/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginExample2/LoginExample2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginExample2/LoginExample2.csproj -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginExample2/LoginExample2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginExample2/LoginExample2.sln -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginExample2/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginExample2/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/LOGINSAMPLES/LoginExample2/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/LOGINSAMPLES/LoginExample2/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup.sln -------------------------------------------------------------------------------- /WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/App.config -------------------------------------------------------------------------------- /WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/App.xaml -------------------------------------------------------------------------------- /WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/App.xaml.cs -------------------------------------------------------------------------------- /WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/MainVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/MainVM.cs -------------------------------------------------------------------------------- /WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/Person.cs -------------------------------------------------------------------------------- /WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/QuickMVVMSetup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/QuickMVVMSetup/QuickMVVMSetup/QuickMVVMSetup.csproj -------------------------------------------------------------------------------- /WPF/MVVM/SimpleCustomerData/01.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleCustomerData/01.webp -------------------------------------------------------------------------------- /WPF/MVVM/SimpleCustomerData/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleCustomerData/App.xaml -------------------------------------------------------------------------------- /WPF/MVVM/SimpleCustomerData/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleCustomerData/App.xaml.cs -------------------------------------------------------------------------------- /WPF/MVVM/SimpleCustomerData/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleCustomerData/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/MVVM/SimpleCustomerData/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleCustomerData/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/MVVM/SimpleCustomerData/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleCustomerData/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/MVVM/SimpleCustomerData/SimpleCustomerData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleCustomerData/SimpleCustomerData.csproj -------------------------------------------------------------------------------- /WPF/MVVM/SimpleCustomerData/SimpleCustomerData.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleCustomerData/SimpleCustomerData.sln -------------------------------------------------------------------------------- /WPF/MVVM/SimpleCustomerData/cctvtest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleCustomerData/cctvtest.jpg -------------------------------------------------------------------------------- /WPF/MVVM/SimpleNavigation/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleNavigation/App.xaml -------------------------------------------------------------------------------- /WPF/MVVM/SimpleNavigation/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleNavigation/App.xaml.cs -------------------------------------------------------------------------------- /WPF/MVVM/SimpleNavigation/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleNavigation/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF/MVVM/SimpleNavigation/MainVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleNavigation/MainVM.cs -------------------------------------------------------------------------------- /WPF/MVVM/SimpleNavigation/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleNavigation/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/MVVM/SimpleNavigation/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleNavigation/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF/MVVM/SimpleNavigation/PageId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleNavigation/PageId.cs -------------------------------------------------------------------------------- /WPF/MVVM/SimpleNavigation/Pages/PageA.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleNavigation/Pages/PageA.xaml -------------------------------------------------------------------------------- /WPF/MVVM/SimpleNavigation/Pages/PageA.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleNavigation/Pages/PageA.xaml.cs -------------------------------------------------------------------------------- /WPF/MVVM/SimpleNavigation/Pages/PageB.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleNavigation/Pages/PageB.xaml -------------------------------------------------------------------------------- /WPF/MVVM/SimpleNavigation/Pages/PageB.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleNavigation/Pages/PageB.xaml.cs -------------------------------------------------------------------------------- /WPF/MVVM/SimpleNavigation/Pages/PageC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleNavigation/Pages/PageC.xaml -------------------------------------------------------------------------------- /WPF/MVVM/SimpleNavigation/Pages/PageC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleNavigation/Pages/PageC.xaml.cs -------------------------------------------------------------------------------- /WPF/MVVM/SimpleNavigation/Pages/PageD.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleNavigation/Pages/PageD.xaml -------------------------------------------------------------------------------- /WPF/MVVM/SimpleNavigation/Pages/PageD.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleNavigation/Pages/PageD.xaml.cs -------------------------------------------------------------------------------- /WPF/MVVM/SimpleNavigation/SimpleNavigation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleNavigation/SimpleNavigation.csproj -------------------------------------------------------------------------------- /WPF/MVVM/SimpleNavigation/SimpleNavigation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/WPF/MVVM/SimpleNavigation/SimpleNavigation.sln -------------------------------------------------------------------------------- /_MockUps/Hyperlink Mockup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/_MockUps/Hyperlink Mockup.pdf -------------------------------------------------------------------------------- /_MockUps/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsmech/Tutorials/HEAD/_MockUps/readme --------------------------------------------------------------------------------