28 lines
1.3 KiB
XML
28 lines
1.3 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"
|
|
mc:Ignorable="d" d:DesignWidth="600" d:DesignHeight="400"
|
|
x:Class="VaultSmpInstaller.Views.InstanceNotIntactWindow"
|
|
x:DataType="vm:ThemeViewModel"
|
|
Icon="/Assets/icon.ico"
|
|
Title="Instance not Intact"
|
|
Width="600" Height="400"
|
|
WindowStartupLocation="CenterOwner"
|
|
CanResize="False">
|
|
<Design.DataContext>
|
|
<vm:ThemeViewModel/>
|
|
</Design.DataContext>
|
|
<StackPanel Background="{Binding Background}">
|
|
<TextBlock>This instance has been modified outside of this script.</TextBlock>
|
|
<TextBlock>If you have used the previous script this should be fine.</TextBlock>
|
|
<TextBlock>Otherwise I recommend making a new instance.</TextBlock>
|
|
<TextBlock>From this point, beware of issues ahead.</TextBlock>
|
|
<Grid ColumnDefinitions="*, *">
|
|
<Button Grid.Column="0" Margin="10, 10, 5, 10" Click="Cancel">Cancel</Button>
|
|
<Button Grid.Column="1" Margin="5, 10, 10, 10" Click="Continue">Continue</Button>
|
|
</Grid>
|
|
</StackPanel>
|
|
</Window>
|