VRCMelonAssistant/ModAssistant/Pages/Intro.xaml

71 lines
3.4 KiB
Plaintext
Raw Normal View History

2020-02-02 17:00:52 +13:00
<Page x:Class="ModAssistant.Pages.Intro"
2019-04-22 18:41:43 +12:00
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
2020-02-26 22:21:02 +13:00
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
2019-04-22 18:41:43 +12:00
xmlns:local="clr-namespace:ModAssistant"
2020-02-26 22:21:02 +13:00
mc:Ignorable="d"
2019-04-22 18:41:43 +12:00
d:DesignHeight="629" d:DesignWidth="1182"
2020-02-02 17:00:52 +13:00
Title="DynamicResource Intro:Title">
2019-04-22 18:41:43 +12:00
<Grid HorizontalAlignment="Center" VerticalAlignment="Center">
2020-02-17 14:57:58 +13:00
<Grid.RowDefinitions>
<RowDefinition Height="auto"/>
<RowDefinition Height="auto"/>
<RowDefinition Height="auto"/>
<RowDefinition Height="auto"/>
<RowDefinition Height="auto"/>
<RowDefinition Height="auto"/>
<RowDefinition Height="auto"/>
<RowDefinition Height="auto"/>
<RowDefinition Height="auto"/>
<RowDefinition Height="auto"/>
<RowDefinition Height="auto"/>
2019-04-22 18:41:43 +12:00
2020-02-17 14:57:58 +13:00
</Grid.RowDefinitions>
2020-02-02 17:00:52 +13:00
2020-02-17 14:57:58 +13:00
<TextBlock VerticalAlignment="Center" HorizontalAlignment="Left" FontSize="48" Margin="0" Text="{DynamicResource Intro:PageTitle}" />
<TextBlock Grid.Row="1" FontWeight="Bold" Text="{DynamicResource Intro:Terms:Header}" Margin="0" FontSize="28" />
<TextBlock Grid.Row="2" Margin="0,5" FontSize="16" TextWrapping="Wrap">
2020-02-26 22:21:02 +13:00
<StaticResource ResourceKey="Intro:Terms:Line1" />
2020-02-17 14:57:58 +13:00
</TextBlock>
2019-04-22 18:41:43 +12:00
2020-02-17 14:57:58 +13:00
<TextBlock Grid.Row="3" Margin="0,5" FontSize="16" TextWrapping="Wrap">
2020-02-26 22:21:02 +13:00
<StaticResource ResourceKey="Intro:Terms:Line2" />
2020-02-17 14:57:58 +13:00
</TextBlock>
2019-04-22 18:41:43 +12:00
2020-02-17 14:57:58 +13:00
<TextBlock Grid.Row="4" Margin="15,5" FontSize="16" TextWrapping="Wrap">
2020-02-26 22:21:02 +13:00
<StaticResource ResourceKey="Intro:Terms:Term1" />
2020-02-17 14:57:58 +13:00
</TextBlock>
2019-04-22 18:41:43 +12:00
2020-02-17 14:57:58 +13:00
<TextBlock Grid.Row="5" Margin="15,5" FontSize="16" TextWrapping="Wrap">
2020-02-26 22:21:02 +13:00
<StaticResource ResourceKey="Intro:Terms:Term2" />
2020-02-17 14:57:58 +13:00
</TextBlock>
2019-04-22 18:41:43 +12:00
2020-02-17 14:57:58 +13:00
<TextBlock Grid.Row="6" Margin="15,5" FontSize="16" TextWrapping="Wrap">
2020-02-26 22:21:02 +13:00
<StaticResource ResourceKey="Intro:Terms:Term3" />
2020-02-17 14:57:58 +13:00
</TextBlock>
2019-04-22 18:41:43 +12:00
2020-02-17 14:57:58 +13:00
<TextBlock Grid.Row="7" Margin="0,5" FontSize="16" TextWrapping="Wrap">
2020-02-26 22:21:02 +13:00
<StaticResource ResourceKey="Intro:ReviewsBeatGamesFault" />
2020-02-17 14:57:58 +13:00
</TextBlock>
2019-04-22 18:41:43 +12:00
2020-02-17 14:57:58 +13:00
<TextBlock Grid.Row="8" Margin="0,5" FontSize="16" TextWrapping="Wrap">
2020-02-26 22:21:02 +13:00
<StaticResource ResourceKey="Intro:ReviewsRustySpoon" />
2020-02-17 14:57:58 +13:00
</TextBlock>
2019-04-22 18:41:43 +12:00
2020-02-17 14:57:58 +13:00
<TextBlock Grid.Row="9" Margin="0,5" FontSize="16" TextWrapping="Wrap">
2020-02-26 22:21:02 +13:00
<StaticResource ResourceKey="Intro:WikiGuide" />
2020-02-17 14:57:58 +13:00
</TextBlock>
2019-04-22 18:41:43 +12:00
2020-02-17 14:57:58 +13:00
<StackPanel Margin="10" Grid.Row="10" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
<Button Margin="0,0,10,0" Name="Agree" Height="35" Width="100" VerticalAlignment="Center" HorizontalAlignment="Center" Click="Agree_Click">
2020-02-02 17:00:52 +13:00
<TextBlock FontSize="18" HorizontalAlignment="Center" VerticalAlignment="Center" Text="{DynamicResource Intro:AgreeButton}" />
2020-02-02 09:31:22 +13:00
</Button>
2020-02-17 14:57:58 +13:00
<Button Margin="10,0,0,0" Name="Disagree" Height="35" Width="100" VerticalAlignment="Center" HorizontalAlignment="Center" Click="Disagree_Click">
2020-02-02 17:00:52 +13:00
<TextBlock FontSize="18" HorizontalAlignment="Center" VerticalAlignment="Center" Text="{DynamicResource Intro:DisagreeButton}" />
2020-02-02 09:31:22 +13:00
</Button>
2020-02-17 14:57:58 +13:00
</StackPanel>
</Grid>
2019-04-22 18:41:43 +12:00
</Page>