24 lines
1.2 KiB
XML
24 lines
1.2 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.ProgressRing"
|
|
mc:Ignorable="d" d:DesignWidth="300" d:DesignHeight="160"
|
|
x:Class="VaultSmpInstaller.Views.DownloadingWindow"
|
|
x:DataType="vm:DownloadingWindowViewModel"
|
|
Icon="/Assets/icon.ico"
|
|
Title="Downloading Update"
|
|
Width="300" Height="160"
|
|
WindowStartupLocation="CenterOwner"
|
|
CanResize="False">
|
|
<Design.DataContext>
|
|
<vm:DownloadingWindowViewModel/>
|
|
</Design.DataContext>
|
|
<StackPanel Background="{Binding Background}">
|
|
<TextBlock FontSize="18" Margin="10, 10, 10, 0">Downloading Latest Release</TextBlock>
|
|
<TextBlock FontSize="10" Margin="0, 0, 0, 20">This popup will close when complete</TextBlock>
|
|
<controls:ProgressRing IsIndeterminate="True" BorderThickness="10" Width="80" Height="80" />
|
|
</StackPanel>
|
|
</Window>
|