markus / MarkusAutoUpdate / src / NetSparkle.UI.WPF / MessageNotificationWindow.xaml @ d8f5045e
이력 | 보기 | 이력해설 | 다운로드 (1.39 KB)
1 |
<Window x:Class="NetSparkleUpdater.UI.WPF.MessageNotificationWindow" |
---|---|
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 |
MaxWidth="400" |
10 |
Title="Software Update" |
11 |
ResizeMode="NoResize" |
12 |
SizeToContent="Height" |
13 |
d:DesignHeight="120" |
14 |
d:DesignWidth="800" |
15 |
WindowStartupLocation="CenterScreen"> |
16 |
<Grid>
|
17 |
<Grid.RowDefinitions>
|
18 |
<RowDefinition Height="Auto" /> |
19 |
<RowDefinition Height="Auto" /> |
20 |
</Grid.RowDefinitions>
|
21 |
<TextBlock TextWrapping="Wrap" |
22 |
Name="Message" |
23 |
Grid.Row="0" |
24 |
Grid.Column="0" |
25 |
Margin="5,10,0,5" |
26 |
FontWeight="Bold" |
27 |
Text="{Binding Message}" |
28 |
HorizontalAlignment="Center" |
29 |
FontSize="18" /> |
30 |
<Button Content="OK" |
31 |
HorizontalAlignment="Center" |
32 |
Padding="10,5,10,5" |
33 |
Margin="0,10,0,10" |
34 |
Grid.Row="1" |
35 |
Click="Button_Click" /> |
36 |
</Grid>
|
37 |
</Window>
|