mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-12-21 08:33:08 +00:00
25e7f810c7
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
18 lines
1.3 KiB
XML
18 lines
1.3 KiB
XML
<Page x:Class="UWUVCI_AIO_WPF.UI.Frames.InjectFrames.Bases.BaseContainerFrame"
|
|
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.InjectFrames.Bases"
|
|
mc:Ignorable="d"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
d:DesignHeight="297" d:DesignWidth="403"
|
|
Title="BaseContainerFrame">
|
|
|
|
<Grid DataContext="{StaticResource mvm}">
|
|
<TextBlock Text="Choose a Base from the dropdown menu" Margin="10,2,10,275" VerticalAlignment="Center" HorizontalAlignment="Center" TextAlignment="Center" FontSize="15" Width="383"></TextBlock>
|
|
<ComboBox x:Name="cbCombo" HorizontalAlignment="Left" Margin="10,27,0,0" VerticalAlignment="Top" Width="383" Background="#FFCFCFCF" BorderBrush="#FF008BFF" ItemsSource="{Binding LGameBasesString}" SelectionChanged="ComboBox_SelectionChanged" SelectedItem="{Binding SelectedBaseAsString}"/>
|
|
<Frame Name="fLoadFrame" HorizontalAlignment="Left" Height="198" Margin="10,90,0,0" VerticalAlignment="Top" Width="383"/>
|
|
|
|
</Grid>
|
|
</Page>
|