VaultSmpInstaller/Views/RemoveOverwolfWindow.axaml

37 lines
2.0 KiB
XML

<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vm="using:VaultSmpInstaller.ViewModels"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:controls="clr-namespace:FluentAvalonia.UI.Controls;assembly=FluentAvalonia"
mc:Ignorable="d" d:DesignWidth="600" d:DesignHeight="400"
x:Class="VaultSmpInstaller.Views.RemoveOverwolfWindow"
x:DataType="vm:ThemeViewModel"
Icon="/Assets/icon.ico"
Title="Overwolf Detected"
Width="600" Height="400"
WindowStartupLocation="CenterOwner"
CanResize="False">
<Design.DataContext>
<vm:ThemeViewModel/>
</Design.DataContext>
<Grid Margin="15" Background="{Binding Background}" RowDefinitions="Auto, *, Auto">
<StackPanel>
<TextBlock FontSize="18" Margin="15">Curseforge with Overwolf Detected</TextBlock>
<TextBlock>Please note: Curseforge installed with Overwolf is not</TextBlock>
<TextBlock Margin="0, 0, 0, 10">and will never be supported by this installer.</TextBlock>
<TextBlock>A standalone Curseforge launcher exists and is created by Curseforge, use it instead.</TextBlock>
<TextBlock>It uses the same default instance folder as the Overwolf launcher.</TextBlock>
<TextBlock>If you didn't change the instance folder, it will keep your instances.</TextBlock>
</StackPanel>
<Grid Grid.Row="1" ColumnDefinitions="*, *">
<Button Click="DownloadNewLaucher">Download New Launcher</Button>
<Button Grid.Column="1" Margin="0, 0, 0, 10" Click="UninstallOldVersion">Uninstall Old Launcher</Button>
</Grid>
<Grid Grid.Row="2" ColumnDefinitions="*">
<Button Margin="5, 10, 10, 10" Click="Continue">Continue</Button>
</Grid>
</Grid>
</Window>