mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-30 14:59:10 +00:00
21 lines
1.9 KiB
XML
21 lines
1.9 KiB
XML
<Page x:Class="UWUVCI_AIO_WPF.UI.Frames.InjectFrames.Bases.NonCustomBaseFrame"
|
|
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="290" d:DesignWidth="383"
|
|
Title="NonCustomBaseFrame" materialDesign:ShadowAssist.CacheMode="{x:Null}">
|
|
|
|
<Grid>
|
|
<TextBlock x:Name="tbDWNL" HorizontalAlignment="Center" Margin="10,58,10,0" TextWrapping="Wrap" Text="Base not downloaded" VerticalAlignment="Top" TextAlignment="Center" Width="363" FontSize="20" Foreground="DarkRed"/>
|
|
<TextBlock x:Name="tbTK" HorizontalAlignment="Center" Margin="10,93,10,0" TextWrapping="Wrap" Text="TitleKey missing" VerticalAlignment="Top" TextAlignment="Center" Width="363" FontSize="20" Foreground="DarkRed"/>
|
|
<TextBlock x:Name="tbCK" HorizontalAlignment="Center" Margin="10,128,10,0" TextWrapping="Wrap" Text="CommonKey missing" VerticalAlignment="Top" TextAlignment="Center" Width="363" FontSize="20" Foreground="DarkRed"/>
|
|
<Button x:Name="btnDwnlnd" Content="Download" HorizontalAlignment="Left" Margin="258,252,0,0" IsTabStop="False" VerticalAlignment="Top" Width="125" IsEnabled="False" Click="btnDwnlnd_Click"/>
|
|
<Button x:Name="TK" Content="Enter TKey" HorizontalAlignment="Left" Margin="129,252,0,0" IsTabStop="False" VerticalAlignment="Top" Width="115" Click="btnDwnlnd_Copy_Click" />
|
|
<Button x:Name="CK" Content="Enter CKey" HorizontalAlignment="Left" Margin="0,252,0,0" IsTabStop="False" VerticalAlignment="Top" Width="115" Click="btnDwnlnd_Copy1_Click" />
|
|
|
|
</Grid>
|
|
</Page>
|