markus / KCOM / UpdateWindow.xaml @ f3c08420
이력 | 보기 | 이력해설 | 다운로드 (3.96 KB)
1 |
<telerik:RadWindow x:Class="KCOM.UpdateWindow" |
---|---|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
4 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
5 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
6 |
xmlns:navigation="clr-namespace:Telerik.Windows.Controls.Navigation;assembly=Telerik.Windows.Controls.Navigation" |
7 |
navigation:RadWindowInteropHelper.ShowInTaskbar="True" |
8 |
navigation:RadWindowInteropHelper.Icon="markup.ico" |
9 |
xmlns:local="clr-namespace:KCOM" CanClose="False" HideMinimizeButton="True" |
10 |
WindowStartupLocation="CenterScreen" HideMaximizeButton="True" CanMove="False" |
11 |
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
12 |
mc:Ignorable="d" Style="{StaticResource MainWindowStyle}" |
13 |
Header="Markus Smart Update" Height="150" Width="500" MaxHeight="150" MaxWidth="500" MinHeight="150" MinWidth="500"> |
14 |
<telerik:RadWindow.Resources>
|
15 |
<Style TargetType="Path" x:Key="RadPathStyle"> |
16 |
<Setter Property="Width" Value="14"/> |
17 |
<Setter Property="Height" Value="14"/> |
18 |
<Setter Property="Fill" Value="#FF494949" /> |
19 |
<Setter Property="Stretch" Value="Fill" /> |
20 |
<Setter Property="HorizontalAlignment" Value="Left" /> |
21 |
<Setter Property="VerticalAlignment" Value="Center" /> |
22 |
</Style>
|
23 |
<Style TargetType="telerik:RadPathButton" x:Key="RadPathButtonStyle"> |
24 |
<Setter Property="PathStyle" Value="{StaticResource RadPathStyle}"/> |
25 |
<Setter Property="telerik:StyleManager.Theme" Value="Office2016"/> |
26 |
<Setter Property="ContentPlacement" Value="Right"/> |
27 |
<Setter Property="HorizontalContentAlignment" Value="Center"/> |
28 |
<Setter Property="FontSize" Value="14"/> |
29 |
<Setter Property="FontWeight" Value="Bold"/> |
30 |
</Style>
|
31 |
</telerik:RadWindow.Resources>
|
32 |
<telerik:RadWindow.Icon>
|
33 |
<Image Source="{telerik:RadGlyph Glyph={StaticResource GlyphQuestion}, Foreground=Gray}" Margin="0,0,10,0"/> |
34 |
<!--<telerik:RadGlyph Glyph="" Foreground="White" FontSize="14"/>-->
|
35 |
</telerik:RadWindow.Icon>
|
36 |
<Grid>
|
37 |
<Grid.RowDefinitions>
|
38 |
<RowDefinition Height="Auto"/> |
39 |
<RowDefinition Height="Auto"/> |
40 |
</Grid.RowDefinitions>
|
41 |
<StackPanel Orientation="Horizontal"> |
42 |
<TextBlock FontSize="20" FontWeight="Bold" Margin="25,10" Foreground="#FF515151"> |
43 |
Markus의 새로운 버전이 있습니다.<LineBreak/>업데이트 하시겠습니까? |
44 |
</TextBlock>
|
45 |
</StackPanel>
|
46 |
<Grid Grid.Row="1"> |
47 |
<Grid.ColumnDefinitions>
|
48 |
<ColumnDefinition/> |
49 |
<ColumnDefinition Width="Auto"/> |
50 |
<ColumnDefinition Width="10"/> |
51 |
<ColumnDefinition Width="Auto"/> |
52 |
<ColumnDefinition Width="10"/> |
53 |
<ColumnDefinition Width="Auto"/> |
54 |
<ColumnDefinition/> |
55 |
</Grid.ColumnDefinitions>
|
56 |
<telerik:RadPathButton Grid.Column="1" Content="업데이트 " Width="115" Style="{StaticResource RadPathButtonStyle}" Click="btUpdate_Click" |
57 |
PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphReset}, Foreground=White}"/> |
58 |
<telerik:RadPathButton Grid.Column="3" Content="업데이트 안함" Width="115" Style="{StaticResource RadPathButtonStyle}" Click="btPassUpdate_Click" |
59 |
PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphClose}, Foreground=White}"/> |
60 |
<telerik:RadPathButton Grid.Column="5" Content="취 소 " Width="115" Style="{StaticResource RadPathButtonStyle}" Click="btCancel_Click" |
61 |
PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphClose}, Foreground=White}"/> |
62 |
</Grid>
|
63 |
</Grid>
|
64 |
</telerik:RadWindow>
|