You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.7 KiB
XML

<Window x:Class="Txgy.EWS.Client.Upgrade.FinishWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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"
xmlns:local="clr-namespace:Txgy.EWS.Client.Upgrade"
mc:Ignorable="d"
FontFamily="Microsoft YaHei" FontSize="14" Foreground="#333"
WindowStartupLocation="CenterOwner" Background="Transparent" WindowStyle="None"
Title="更新完成" Height="200" Width="350">
<WindowChrome.WindowChrome>
<WindowChrome GlassFrameThickness="-1" ResizeBorderThickness="0"/>
</WindowChrome.WindowChrome>
<Border Background="#F7F9FA">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30"/>
<RowDefinition/>
<RowDefinition Height="40"/>
</Grid.RowDefinitions>
<Border Background="White"/>
<Border Background="White" Grid.Row="2"/>
<TextBlock Text="更新完成" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="16"/>
<StackPanel VerticalAlignment="Center" Margin="20,0" Grid.Row="1">
<TextBlock Text="所有文件更新已完成!点击[确认]退出更新程序。" Margin="0,10,0,20"/>
<CheckBox Content="退出时立即启动主程序" FontSize="12" IsChecked="{Binding IsRunning}"/>
</StackPanel>
<Button Content="确认" Grid.Row="2" Height="30" Width="100" Command="{Binding ConfirmCommand}"/>
</Grid>
</Border>
</Window>