mirror of
https://github.com/k1tbyte/Wand-Enhancer.git
synced 2026-08-28 23:01:13 +00:00
32 lines
1.7 KiB
XML
32 lines
1.7 KiB
XML
<UserControl x:Class="WeModPatcher.View.Popups.PatchVectorsPopup"
|
|
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:WeModPatcher.View.Popups"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="300" d:DesignWidth="300"
|
|
Foreground="{DynamicResource MutedForeground}"
|
|
FontWeight="Medium"
|
|
FontSize="13">
|
|
<Grid Margin="0 0 5 0">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="27"/>
|
|
<RowDefinition Height="27"/>
|
|
<RowDefinition Height="27"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
<TextBlock Grid.Row="0" VerticalAlignment="Center" Text="Activate WeMod Pro"/>
|
|
<CheckBox Grid.Row="0" x:Name="ActivateProBox" HorizontalAlignment="Right" VerticalAlignment="Center" IsChecked="True"/>
|
|
|
|
<TextBlock Grid.Row="1" VerticalAlignment="Center" Text="Disable telemetry"/>
|
|
<CheckBox Grid.Row="1" x:Name="DisableTelemetryBox" HorizontalAlignment="Right" VerticalAlignment="Center"/>
|
|
|
|
<TextBlock Grid.Row="2" VerticalAlignment="Center" Text="Disable updates"/>
|
|
<CheckBox Grid.Row="2" x:Name="DisableUpdateBox" HorizontalAlignment="Right" VerticalAlignment="Center"/>
|
|
|
|
<Button Grid.Row="3" Padding="0 5 0 5" Margin="0 15 0 0" Content="Continue"
|
|
Click="ButtonBase_OnClick"/>
|
|
</Grid>
|
|
</UserControl>
|