VaultSmpInstaller/Views/SuccessWindow.axaml

22 lines
1.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"
mc:Ignorable="d" d:DesignWidth="250" d:DesignHeight="150"
x:Class="VaultSmpInstaller.Views.SuccessWindow"
x:DataType="vm:ThemeViewModel"
Icon="/Assets/icon.ico"
Title="Installation Successful"
Width="275" Height="100"
WindowStartupLocation="CenterOwner"
CanResize="False">
<Design.DataContext>
<vm:ThemeViewModel/>
</Design.DataContext>
<Grid Background="{Binding Background}" RowDefinitions="Auto, *">
<TextBlock Grid.Row="0" FontSize="24" Margin="10">Installation Successful!</TextBlock>
<Button Grid.Row="1" Margin="10, 10, 5, 10" Click="Ok">Ok</Button>
</Grid>
</Window>