mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-30 14:59:10 +00:00
19 lines
1.7 KiB
XML
19 lines
1.7 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:DesignWidth="403"
|
|
Title="BaseContainerFrame" Height="406" materialDesign:ShadowAssist.CacheMode="{x:Null}">
|
|
|
|
<Grid DataContext="{StaticResource mvm}">
|
|
<TextBlock Text="Choose a Base from the dropdown menu" Margin="10,5,10,381" VerticalAlignment="Center" HorizontalAlignment="Center" TextAlignment="Center" FontSize="15" Width="383"></TextBlock>
|
|
<ComboBox x:Name="cbCombo" Margin="7,32,13,0" VerticalAlignment="Top" Background="#FFCFCFCF" BorderBrush="#FF008BFF" ItemsSource="{Binding LGameBasesString}" IsTabStop="False" SelectionChanged="ComboBox_SelectionChanged" SelectedItem="{Binding SelectedBaseAsString}"/>
|
|
<Frame Name="fLoadFrame" HorizontalAlignment="Left" Height="290" Margin="10,116,0,0" VerticalAlignment="Top" Width="383" IsTabStop="False"/>
|
|
<Button Content="Copy ID" HorizontalAlignment="Left" Margin="298,69,0,0" VerticalAlignment="Top" Width="94" Height="31" Name="id" Click="id_Click" Visibility="Hidden" IsTabStop="False"/>
|
|
<Label Content="" HorizontalAlignment="Left" Margin="179,72,0,0" VerticalAlignment="Top" Width="114" Name="idtxt" Foreground="Black" Visibility="Hidden" IsTabStop="False"/>
|
|
|
|
</Grid>
|
|
</Page>
|