├── App.config ├── App.xaml ├── App.xaml.cs ├── Attached Properties ├── BasicMenuButton.cs ├── CheckableMenuButton.cs ├── LoginServiceButtons.cs └── SideNavigationMenu.cs ├── Converters ├── ArcEndPointConverter.cs ├── ArcSizeConverter.cs ├── LocalEx.cs ├── NotZeroConverter.cs ├── PositiveToNegativeConverter.cs ├── RotateTransformCentreConverter.cs ├── StartPointConverter.cs └── TextToBoolConverter.cs ├── CustomControls ├── LibraryItemCard.xaml ├── LibraryItemCard.xaml.cs ├── LibraryShopCard.xaml ├── LibraryShopCard.xaml.cs ├── SearchBox.xaml └── SearchBox.xaml.cs ├── EpicGamesLauncher.csproj ├── EpicGamesLauncher.csproj.user ├── EpicGamesLauncher.sln ├── EpicIcon.ico ├── Fonts └── segmdl2.ttf ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Pages ├── LoadingPage.xaml ├── LoadingPage.xaml.cs ├── PreparingToLaunchStore.xaml ├── PreparingToLaunchStore.xaml.cs ├── SettingsPage.xaml ├── SettingsPage.xaml.cs ├── SignInPage.xaml ├── SignInPage.xaml.cs ├── StorePage.xaml └── StorePage.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Resources ├── EpicIcon.ico ├── Icons.xaml ├── brave.png ├── fortnite.jpg └── googleicon.png └── Style ├── ButtonsStyle.xaml ├── Colors.xaml ├── ComboBoxStyles.xaml ├── Fonts.xaml ├── IconsStyle.xaml ├── ProgressBarStyles.xaml ├── ScrollBar.xaml ├── Window.cs └── Window.xaml /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/App.config -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /Attached Properties/BasicMenuButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Attached Properties/BasicMenuButton.cs -------------------------------------------------------------------------------- /Attached Properties/CheckableMenuButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Attached Properties/CheckableMenuButton.cs -------------------------------------------------------------------------------- /Attached Properties/LoginServiceButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Attached Properties/LoginServiceButtons.cs -------------------------------------------------------------------------------- /Attached Properties/SideNavigationMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Attached Properties/SideNavigationMenu.cs -------------------------------------------------------------------------------- /Converters/ArcEndPointConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Converters/ArcEndPointConverter.cs -------------------------------------------------------------------------------- /Converters/ArcSizeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Converters/ArcSizeConverter.cs -------------------------------------------------------------------------------- /Converters/LocalEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Converters/LocalEx.cs -------------------------------------------------------------------------------- /Converters/NotZeroConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Converters/NotZeroConverter.cs -------------------------------------------------------------------------------- /Converters/PositiveToNegativeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Converters/PositiveToNegativeConverter.cs -------------------------------------------------------------------------------- /Converters/RotateTransformCentreConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Converters/RotateTransformCentreConverter.cs -------------------------------------------------------------------------------- /Converters/StartPointConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Converters/StartPointConverter.cs -------------------------------------------------------------------------------- /Converters/TextToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Converters/TextToBoolConverter.cs -------------------------------------------------------------------------------- /CustomControls/LibraryItemCard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/CustomControls/LibraryItemCard.xaml -------------------------------------------------------------------------------- /CustomControls/LibraryItemCard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/CustomControls/LibraryItemCard.xaml.cs -------------------------------------------------------------------------------- /CustomControls/LibraryShopCard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/CustomControls/LibraryShopCard.xaml -------------------------------------------------------------------------------- /CustomControls/LibraryShopCard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/CustomControls/LibraryShopCard.xaml.cs -------------------------------------------------------------------------------- /CustomControls/SearchBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/CustomControls/SearchBox.xaml -------------------------------------------------------------------------------- /CustomControls/SearchBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/CustomControls/SearchBox.xaml.cs -------------------------------------------------------------------------------- /EpicGamesLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/EpicGamesLauncher.csproj -------------------------------------------------------------------------------- /EpicGamesLauncher.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/EpicGamesLauncher.csproj.user -------------------------------------------------------------------------------- /EpicGamesLauncher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/EpicGamesLauncher.sln -------------------------------------------------------------------------------- /EpicIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/EpicIcon.ico -------------------------------------------------------------------------------- /Fonts/segmdl2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Fonts/segmdl2.ttf -------------------------------------------------------------------------------- /MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/MainWindow.xaml -------------------------------------------------------------------------------- /MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Pages/LoadingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Pages/LoadingPage.xaml -------------------------------------------------------------------------------- /Pages/LoadingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Pages/LoadingPage.xaml.cs -------------------------------------------------------------------------------- /Pages/PreparingToLaunchStore.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Pages/PreparingToLaunchStore.xaml -------------------------------------------------------------------------------- /Pages/PreparingToLaunchStore.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Pages/PreparingToLaunchStore.xaml.cs -------------------------------------------------------------------------------- /Pages/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Pages/SettingsPage.xaml -------------------------------------------------------------------------------- /Pages/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Pages/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /Pages/SignInPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Pages/SignInPage.xaml -------------------------------------------------------------------------------- /Pages/SignInPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Pages/SignInPage.xaml.cs -------------------------------------------------------------------------------- /Pages/StorePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Pages/StorePage.xaml -------------------------------------------------------------------------------- /Pages/StorePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Pages/StorePage.xaml.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /Resources/EpicIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Resources/EpicIcon.ico -------------------------------------------------------------------------------- /Resources/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Resources/Icons.xaml -------------------------------------------------------------------------------- /Resources/brave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Resources/brave.png -------------------------------------------------------------------------------- /Resources/fortnite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Resources/fortnite.jpg -------------------------------------------------------------------------------- /Resources/googleicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Resources/googleicon.png -------------------------------------------------------------------------------- /Style/ButtonsStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Style/ButtonsStyle.xaml -------------------------------------------------------------------------------- /Style/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Style/Colors.xaml -------------------------------------------------------------------------------- /Style/ComboBoxStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Style/ComboBoxStyles.xaml -------------------------------------------------------------------------------- /Style/Fonts.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Style/Fonts.xaml -------------------------------------------------------------------------------- /Style/IconsStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Style/IconsStyle.xaml -------------------------------------------------------------------------------- /Style/ProgressBarStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Style/ProgressBarStyles.xaml -------------------------------------------------------------------------------- /Style/ScrollBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Style/ScrollBar.xaml -------------------------------------------------------------------------------- /Style/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Style/Window.cs -------------------------------------------------------------------------------- /Style/Window.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdscodelab/EpicGamesLauncherUI/HEAD/Style/Window.xaml --------------------------------------------------------------------------------