Files
Il2CppInspectorRedux/Il2CppInspector.GUI/MainWindow.xaml
2020-02-08 12:58:54 +01:00

20 lines
1.1 KiB
XML

<Window x:Class="Il2CppInspector.GUI.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Il2CppInspector.GUI"
mc:Ignorable="d"
Title="Il2CppInspector" Height="450" Width="800" Background="LightGray">
<Grid>
<Grid>
<TextBlock>foo</TextBlock>
</Grid>
<DockPanel>
<Border BorderThickness="4" BorderBrush="Black" CornerRadius="10" Margin="100" Opacity="0.7" Background="LightSteelBlue" Visibility="Visible">
<Button Name="btnSelectMetadataFile" Click="BtnSelectMetadataFile_OnClick" BorderThickness="0" Background="Transparent" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" FontSize="24">Click to select an IL2CPP metadata file</Button>
</Border>
</DockPanel>
</Grid>
</Window>