12345678910111213141516171819 |
- <Window xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
- Width="650"
- Height="450"
- x:Class="fis.Upgrader.MainWindow"
- HasSystemDecorations="False"
- WindowStartupLocation="CenterScreen"
- ShowInTaskbar="False"
- Topmost="True"
- Title="fis.Upgrader">
- <StackPanel VerticalAlignment="Bottom" Margin="5,0,5,25" >
- <TextBlock x:Name="upgradeStatusText" Margin="0,0,0,3" />
- <ProgressBar ShowProgressText="True" x:Name="upgradeProgressBar" Foreground="#509EFF" Minimum="0" Maximum="100" Value="0" />
- </StackPanel>
- </Window>
|