├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FilterApps.gif ├── LICENSE.md ├── Navigation.gif ├── README.md ├── SearchingApps.gif ├── UWPAppLauncherMonochromeWideBranding.png ├── appLauncher.sln ├── appLauncher ├── App.xaml ├── App.xaml.cs ├── Core │ ├── Animations │ │ └── IndicatorAnimation.cs │ ├── AppViewCommands.cs │ ├── Assets │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.backup.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── Brushes │ │ ├── MaskedBrush.cs │ │ └── PageImageBrush.cs │ ├── CustomEvent │ │ └── CustomEvents.cs │ ├── DataTemplateSelectors │ │ └── ApporFolderTemplateSelector.cs │ ├── Enums │ │ ├── DeviceType.cs │ │ └── FilterType.cs │ ├── Extensions │ │ └── ExtentionsMethods.cs │ ├── Helpers │ │ ├── InstallorRemoveApplicationHelper.cs │ │ ├── LoggingHelper.cs │ │ ├── imageHelper.cs │ │ ├── packageHelper.cs │ │ └── settingsHelper.cs │ ├── Interfaces │ │ └── IApporFolder.cs │ ├── Model │ │ ├── AppFolder.cs │ │ ├── AppPaginationObservableCollection.cs │ │ ├── AppVersionInfo.cs │ │ ├── ColorComboItem.cs │ │ ├── DraggedItem.cs │ │ ├── FinalTiles.cs │ │ ├── GlobalAppSettings.cs │ │ ├── LauncherSettings.cs │ │ ├── Modelbase.cs │ │ ├── NetworkingSettings.cs │ │ ├── PageBackgrounds.cs │ │ ├── PageChangingVariables.cs │ │ ├── PaginatedCollection.cs │ │ ├── PaginatedObservableCollection.cs │ │ └── pageIndicators.cs │ ├── Pages │ │ ├── AboutPage.xaml │ │ ├── AboutPage.xaml.cs │ │ ├── AppBackgroundSettings.xaml │ │ ├── AppBackgroundSettings.xaml.cs │ │ ├── AppInformation.xaml │ │ ├── AppInformation.xaml.cs │ │ ├── AppLoading.xaml │ │ ├── AppLoading.xaml.cs │ │ ├── AppSettings.xaml │ │ ├── AppSettings.xaml.cs │ │ ├── AppTilesSettings.xaml │ │ ├── AppTilesSettings.xaml.cs │ │ ├── AppsListPage.xaml │ │ ├── AppsListPage.xaml.cs │ │ ├── ContentDialog1.xaml │ │ ├── ContentDialog1.xaml.cs │ │ ├── CreateFolders.xaml │ │ ├── CreateFolders.xaml.cs │ │ ├── EditApp.xaml │ │ ├── EditApp.xaml.cs │ │ ├── EditFolder.xaml │ │ ├── EditFolder.xaml.cs │ │ ├── FilterDialog.xaml │ │ ├── FilterDialog.xaml.cs │ │ ├── FirstPage.xaml │ │ ├── FirstPage.xaml.cs │ │ ├── FolderInfo.xaml │ │ ├── FolderInfo.xaml.cs │ │ ├── FolderNamePage.xaml │ │ ├── FolderNamePage.xaml.cs │ │ ├── FolderView.xaml │ │ ├── FolderView.xaml.cs │ │ ├── InitialPage.xaml │ │ ├── InitialPage.xaml.cs │ │ ├── InstallApps.xaml │ │ ├── InstallApps.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NetworkSettings.xaml │ │ ├── NetworkSettings.xaml.cs │ │ ├── RemoveApps.xaml │ │ ├── RemoveApps.xaml.cs │ │ ├── RemoveFolder.xaml │ │ ├── RemoveFolder.xaml.cs │ │ ├── SettingsPage.xaml │ │ └── SettingsPage.xaml.cs │ ├── Serializers │ │ └── ApporFolderSerializer.cs │ ├── ViewModels │ │ └── AppsViewViewModel.cs │ └── Views │ │ ├── AppsView.xaml │ │ └── AppsView.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── appLauncher.csproj └── appLauncher.ruleset ├── appLauncherDemo.gif └── appLauncherGIFSupport.gif /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FilterApps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/FilterApps.gif -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Navigation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/Navigation.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/README.md -------------------------------------------------------------------------------- /SearchingApps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/SearchingApps.gif -------------------------------------------------------------------------------- /UWPAppLauncherMonochromeWideBranding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/UWPAppLauncherMonochromeWideBranding.png -------------------------------------------------------------------------------- /appLauncher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher.sln -------------------------------------------------------------------------------- /appLauncher/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/App.xaml -------------------------------------------------------------------------------- /appLauncher/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/App.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Animations/IndicatorAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Animations/IndicatorAnimation.cs -------------------------------------------------------------------------------- /appLauncher/Core/AppViewCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/AppViewCommands.cs -------------------------------------------------------------------------------- /appLauncher/Core/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /appLauncher/Core/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /appLauncher/Core/Brushes/MaskedBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Brushes/MaskedBrush.cs -------------------------------------------------------------------------------- /appLauncher/Core/Brushes/PageImageBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Brushes/PageImageBrush.cs -------------------------------------------------------------------------------- /appLauncher/Core/CustomEvent/CustomEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/CustomEvent/CustomEvents.cs -------------------------------------------------------------------------------- /appLauncher/Core/DataTemplateSelectors/ApporFolderTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/DataTemplateSelectors/ApporFolderTemplateSelector.cs -------------------------------------------------------------------------------- /appLauncher/Core/Enums/DeviceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Enums/DeviceType.cs -------------------------------------------------------------------------------- /appLauncher/Core/Enums/FilterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Enums/FilterType.cs -------------------------------------------------------------------------------- /appLauncher/Core/Extensions/ExtentionsMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Extensions/ExtentionsMethods.cs -------------------------------------------------------------------------------- /appLauncher/Core/Helpers/InstallorRemoveApplicationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Helpers/InstallorRemoveApplicationHelper.cs -------------------------------------------------------------------------------- /appLauncher/Core/Helpers/LoggingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Helpers/LoggingHelper.cs -------------------------------------------------------------------------------- /appLauncher/Core/Helpers/imageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Helpers/imageHelper.cs -------------------------------------------------------------------------------- /appLauncher/Core/Helpers/packageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Helpers/packageHelper.cs -------------------------------------------------------------------------------- /appLauncher/Core/Helpers/settingsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Helpers/settingsHelper.cs -------------------------------------------------------------------------------- /appLauncher/Core/Interfaces/IApporFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Interfaces/IApporFolder.cs -------------------------------------------------------------------------------- /appLauncher/Core/Model/AppFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Model/AppFolder.cs -------------------------------------------------------------------------------- /appLauncher/Core/Model/AppPaginationObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Model/AppPaginationObservableCollection.cs -------------------------------------------------------------------------------- /appLauncher/Core/Model/AppVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Model/AppVersionInfo.cs -------------------------------------------------------------------------------- /appLauncher/Core/Model/ColorComboItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Model/ColorComboItem.cs -------------------------------------------------------------------------------- /appLauncher/Core/Model/DraggedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Model/DraggedItem.cs -------------------------------------------------------------------------------- /appLauncher/Core/Model/FinalTiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Model/FinalTiles.cs -------------------------------------------------------------------------------- /appLauncher/Core/Model/GlobalAppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Model/GlobalAppSettings.cs -------------------------------------------------------------------------------- /appLauncher/Core/Model/LauncherSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Model/LauncherSettings.cs -------------------------------------------------------------------------------- /appLauncher/Core/Model/Modelbase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Model/Modelbase.cs -------------------------------------------------------------------------------- /appLauncher/Core/Model/NetworkingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Model/NetworkingSettings.cs -------------------------------------------------------------------------------- /appLauncher/Core/Model/PageBackgrounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Model/PageBackgrounds.cs -------------------------------------------------------------------------------- /appLauncher/Core/Model/PageChangingVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Model/PageChangingVariables.cs -------------------------------------------------------------------------------- /appLauncher/Core/Model/PaginatedCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Model/PaginatedCollection.cs -------------------------------------------------------------------------------- /appLauncher/Core/Model/PaginatedObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Model/PaginatedObservableCollection.cs -------------------------------------------------------------------------------- /appLauncher/Core/Model/pageIndicators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Model/pageIndicators.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/AboutPage.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/AboutPage.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/AppBackgroundSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/AppBackgroundSettings.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/AppBackgroundSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/AppBackgroundSettings.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/AppInformation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/AppInformation.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/AppInformation.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/AppInformation.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/AppLoading.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/AppLoading.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/AppLoading.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/AppLoading.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/AppSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/AppSettings.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/AppSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/AppSettings.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/AppTilesSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/AppTilesSettings.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/AppTilesSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/AppTilesSettings.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/AppsListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/AppsListPage.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/AppsListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/AppsListPage.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/ContentDialog1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/ContentDialog1.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/ContentDialog1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/ContentDialog1.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/CreateFolders.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/CreateFolders.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/CreateFolders.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/CreateFolders.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/EditApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/EditApp.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/EditApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/EditApp.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/EditFolder.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/EditFolder.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/EditFolder.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/EditFolder.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/FilterDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/FilterDialog.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/FilterDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/FilterDialog.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/FirstPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/FirstPage.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/FirstPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/FirstPage.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/FolderInfo.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/FolderInfo.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/FolderInfo.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/FolderInfo.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/FolderNamePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/FolderNamePage.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/FolderNamePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/FolderNamePage.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/FolderView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/FolderView.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/FolderView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/FolderView.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/InitialPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/InitialPage.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/InitialPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/InitialPage.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/InstallApps.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/InstallApps.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/InstallApps.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/InstallApps.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/MainPage.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/MainPage.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/NetworkSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/NetworkSettings.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/NetworkSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/NetworkSettings.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/RemoveApps.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/RemoveApps.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/RemoveApps.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/RemoveApps.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/RemoveFolder.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/RemoveFolder.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/RemoveFolder.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/RemoveFolder.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Pages/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/SettingsPage.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Pages/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Pages/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Core/Serializers/ApporFolderSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Serializers/ApporFolderSerializer.cs -------------------------------------------------------------------------------- /appLauncher/Core/ViewModels/AppsViewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/ViewModels/AppsViewViewModel.cs -------------------------------------------------------------------------------- /appLauncher/Core/Views/AppsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Views/AppsView.xaml -------------------------------------------------------------------------------- /appLauncher/Core/Views/AppsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Core/Views/AppsView.xaml.cs -------------------------------------------------------------------------------- /appLauncher/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Package.appxmanifest -------------------------------------------------------------------------------- /appLauncher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /appLauncher/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/Properties/Default.rd.xml -------------------------------------------------------------------------------- /appLauncher/appLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/appLauncher.csproj -------------------------------------------------------------------------------- /appLauncher/appLauncher.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncher/appLauncher.ruleset -------------------------------------------------------------------------------- /appLauncherDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncherDemo.gif -------------------------------------------------------------------------------- /appLauncherGIFSupport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacMorris1980/appLauncher/HEAD/appLauncherGIFSupport.gif --------------------------------------------------------------------------------