mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
59 lines
2.2 KiB
Plaintext
59 lines
2.2 KiB
Plaintext
|
<UserControl
|
||
|
x:Class="Wabbajack.ConfirmUpdateOfExistingInstallView"
|
||
|
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:local="clr-namespace:Wabbajack"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
d:DesignHeight="450"
|
||
|
d:DesignWidth="800"
|
||
|
mc:Ignorable="d">
|
||
|
<Grid Margin="10">
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition Width="*" />
|
||
|
<ColumnDefinition Width="10" />
|
||
|
<ColumnDefinition Width="*" />
|
||
|
</Grid.ColumnDefinitions>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="Auto" />
|
||
|
<RowDefinition Height="5*" />
|
||
|
<RowDefinition Height="Auto" />
|
||
|
<RowDefinition Height="2*" />
|
||
|
</Grid.RowDefinitions>
|
||
|
<TextBlock
|
||
|
Grid.Row="0"
|
||
|
Grid.Column="0"
|
||
|
Grid.ColumnSpan="3"
|
||
|
Margin="0,0,0,5"
|
||
|
FontFamily="Lucida Sans"
|
||
|
FontSize="14"
|
||
|
FontWeight="Bold"
|
||
|
Text="{Binding ActiveGlobalUserIntervention.ShortDescription}"
|
||
|
TextWrapping="WrapWithOverflow" />
|
||
|
<TextBlock
|
||
|
Grid.Row="1"
|
||
|
Grid.Column="0"
|
||
|
Grid.ColumnSpan="3"
|
||
|
Text="{Binding ActiveGlobalUserIntervention.ExtendedDescription}"
|
||
|
TextWrapping="WrapWithOverflow" />
|
||
|
<CheckBox
|
||
|
Grid.Row="2"
|
||
|
Grid.Column="2"
|
||
|
Margin="4"
|
||
|
HorizontalAlignment="Right"
|
||
|
Content="Remember"
|
||
|
IsChecked="{Binding Installer.AutomaticallyOverwrite}"
|
||
|
ToolTip="If installing over an existing installation next time, automatically replace it without asking permission." />
|
||
|
<Button
|
||
|
Grid.Row="3"
|
||
|
Grid.Column="0"
|
||
|
Command="{Binding ActiveGlobalUserIntervention.CancelCommand}"
|
||
|
Content="Cancel" />
|
||
|
<Button
|
||
|
Grid.Row="3"
|
||
|
Grid.Column="2"
|
||
|
Command="{Binding ActiveGlobalUserIntervention.ConfirmCommand}"
|
||
|
Content="Confirm" />
|
||
|
</Grid>
|
||
|
</UserControl>
|