UWUVCI-AIO-WPF/UWUVCI AIO WPF/UI/Frames/SettingsFrame.xaml
NicoAICP 2cdc4c5146 Updating Base List! You can now Update the Base List in the settings by clicking the "Update Base Files" button. Bases are stored under <Path of UWUVCI AIO.exe>/bases/bases.vcb<console> (eg. C:/UWUVCI/bases/bases.vcbnds)
Additional Fixes:

If no bases folder exist the programm will now create it if the users decided so, instead of crashing

If there is a vcb base file missing, the injector will ask the user if it shall download it, since if a file is missing the programm will crash.

If the user chooses no at any of those questions, the programm will terminate itself.

ToDo:
Fix Injection Logic
Fix Broken Image Bug (I'mma jsut call it that)
Check Packing Logic for errors
Add Custom Base support ("LOADIINE")
Add Custom Base support (NUS)
Implement Configs feature
Add AutoUpdater.NET
Go live in Beta?
[MAYBE] Implement Downloading as a Task/Thread
[MAYBE] Check if Downloaded Bases Contain the Code Content and Meta folders
2020-04-04 01:20:15 +02:00

24 lines
2.2 KiB
XML

<Page x:Class="UWUVCI_AIO_WPF.UI.Frames.SettingsFrame"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:UWUVCI_AIO_WPF.UI.Frames"
mc:Ignorable="d"
d:DesignHeight="480" d:DesignWidth="1130"
Title="SettingsFrame">
<Grid>
<TextBlock HorizontalAlignment="Left" Margin="325,124,0,0" TextWrapping="Wrap" Text="Set Injector Paths:" VerticalAlignment="Top" FontSize="20" />
<TextBlock HorizontalAlignment="Left" Margin="325,171,0,0" TextWrapping="Wrap" Text="Enter CommonKey:" VerticalAlignment="Top" FontSize="20" />
<TextBlock HorizontalAlignment="Left" Margin="325,220,0,0" TextWrapping="Wrap" Text="Enter TitleKeys:" VerticalAlignment="Top" FontSize="20" />
<TextBlock HorizontalAlignment="Left" Margin="325,263,0,0" TextWrapping="Wrap" Text="Injector Theme:" VerticalAlignment="Top" FontSize="20" />
<RadioButton Content="Light Theme" HorizontalAlignment="Left" Margin="494,270,0,0" VerticalAlignment="Top" GroupName="theme" x:Name="rblight" IsChecked="True"/>
<Button Content="Change Theme" HorizontalAlignment="Left" Margin="605,263,0,0" VerticalAlignment="Top" Width="145" RenderTransformOrigin="-0.099,0.116"/>
<Button Content="Open CK Menu" HorizontalAlignment="Left" Margin="605,166,0,0" VerticalAlignment="Top" Width="145" RenderTransformOrigin="-0.099,0.116" Click="Button_Click_1"/>
<Button Content="Open Path Menu" HorizontalAlignment="Left" Margin="605,119,0,0" VerticalAlignment="Top" Width="145" RenderTransformOrigin="-0.099,0.116" Click="Button_Click_2"/>
<Button Content="Open TK Menu" HorizontalAlignment="Left" Margin="605,215,0,0" VerticalAlignment="Top" Width="145" RenderTransformOrigin="-0.099,0.116" Click="Button_Click"/>
<Button Content="Update Base Files" HorizontalAlignment="Left" Margin="605,312,0,0" VerticalAlignment="Top" Width="145" RenderTransformOrigin="-0.099,0.116" Click="Button_Click_3"/>
</Grid>
</Page>