markus / MarkusAutoUpdate / src / NetSparkle.UI.Avalonia / CheckingForUpdatesWindow.xaml @ d952e1d5
이력 | 보기 | 이력해설 | 다운로드 (1.5 KB)
1 |
<Window xmlns="https://github.com/avaloniaui" |
---|---|
2 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
3 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
4 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
5 |
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450" |
6 |
x:Class="NetSparkleUpdater.UI.Avalonia.CheckingForUpdatesWindow" |
7 |
Width="400" |
8 |
Height="175" |
9 |
Title="Software Update" |
10 |
MaxWidth="400" |
11 |
MaxHeight="175" |
12 |
WindowStartupLocation="CenterScreen"> |
13 |
<Grid ColumnDefinitions="*" RowDefinitions="Auto, Auto, Auto"> |
14 |
<Image Grid.Row="0" Grid.RowSpan="2" |
15 |
x:Name="AppIcon" |
16 |
VerticalAlignment="Top" |
17 |
HorizontalAlignment="Left" |
18 |
Width="48" |
19 |
Height="48" |
20 |
Margin="10,10,0,0"/> |
21 |
<TextBlock Grid.Row="0" |
22 |
Grid.Column="0" |
23 |
Text="Checking for Updates..." |
24 |
HorizontalAlignment="Center" |
25 |
FontWeight="Bold" |
26 |
FontSize="24"/> |
27 |
<ProgressBar Grid.Row="1" |
28 |
Grid.Column="0" |
29 |
IsIndeterminate="True" |
30 |
Height="25" |
31 |
Width="200" |
32 |
Margin="0,5,0,0"/> |
33 |
<Button Grid.Row="2" |
34 |
Grid.Column="0" |
35 |
Content="Cancel" |
36 |
Padding="10,5,10,5" |
37 |
HorizontalAlignment="Center" |
38 |
FontSize="16" |
39 |
Margin="0,10,0,0" |
40 |
Command="{Binding $parent[Window].Cancel}"/> |
41 |
</Grid>
|
42 |
</Window>
|