markus / MarkusAutoUpdate / src / NetSparkle.UI.WPF / CheckingForUpdatesWindow.xaml @ 8e3d58f3
이력 | 보기 | 이력해설 | 다운로드 (2.06 KB)
1 | d8f5045e | taeseongkim | <Window x:Class="NetSparkleUpdater.UI.WPF.CheckingForUpdatesWindow" |
---|---|---|---|
2 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||
3 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||
4 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||
5 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||
6 | xmlns:local="clr-namespace:NetSparkleUpdater.UI.WPF" |
||
7 | mc:Ignorable="d" |
||
8 | Width="400" |
||
9 | Height="175" |
||
10 | Title="Software Update" |
||
11 | ResizeMode="NoResize" |
||
12 | MaxWidth="400" |
||
13 | MaxHeight="175" |
||
14 | Name="CheckingForUpdateWindow" |
||
15 | d:DesignHeight="300" |
||
16 | d:DesignWidth="500" |
||
17 | WindowStartupLocation="CenterScreen"> |
||
18 | <Grid>
|
||
19 | <Grid.ColumnDefinitions>
|
||
20 | <ColumnDefinition Width="*" /> |
||
21 | </Grid.ColumnDefinitions>
|
||
22 | <Grid.RowDefinitions>
|
||
23 | <RowDefinition Height="Auto" /> |
||
24 | <RowDefinition Height="Auto" /> |
||
25 | <RowDefinition Height="Auto" /> |
||
26 | </Grid.RowDefinitions>
|
||
27 | <Image Grid.Row="0" |
||
28 | Grid.RowSpan="2" |
||
29 | Source="{Binding ElementName=CheckingForUpdateWindow, Path=Icon}" |
||
30 | VerticalAlignment="Top" |
||
31 | HorizontalAlignment="Left" |
||
32 | Width="48" |
||
33 | Height="48" |
||
34 | Margin="10,10,0,0" /> |
||
35 | <Label Grid.Row="0" |
||
36 | Grid.Column="0" |
||
37 | Content="Checking for Updates..." |
||
38 | HorizontalAlignment="Center" |
||
39 | FontWeight="Bold" |
||
40 | FontSize="24" /> |
||
41 | <ProgressBar Grid.Row="1" |
||
42 | Grid.Column="0" |
||
43 | IsIndeterminate="True" |
||
44 | Height="25" |
||
45 | Width="200" |
||
46 | Margin="0,5,0,0" /> |
||
47 | <Button Grid.Row="2" |
||
48 | Grid.Column="0" |
||
49 | Content="Cancel" |
||
50 | FontSize="16" |
||
51 | Padding="10,5,10,5" |
||
52 | HorizontalAlignment="Center" |
||
53 | Margin="0,10,0,0" |
||
54 | Click="CancelButton_Click" /> |
||
55 | </Grid>
|
||
56 | </Window> |