markus / KCOM / Controls / ProgressControl.xaml @ a9a82876
이력 | 보기 | 이력해설 | 다운로드 (1.08 KB)
1 | a860bafc | taeseongkim | <Window
|
---|---|---|---|
2 | x:Class="KCOM.Controls.ProgressControl" |
||
3 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||
4 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||
5 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||
6 | xmlns:local="clr-namespace:KCOM.Controls" |
||
7 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||
8 | Width="300" |
||
9 | Height="70" |
||
10 | Background="#FF007acc"> |
||
11 | 32af2c3b | djkim | <Grid>
|
12 | a860bafc | taeseongkim | <ProgressBar
|
13 | x:Name="progressBar" |
||
14 | Width="300" |
||
15 | Height="18.1" |
||
16 | HorizontalAlignment="Left" |
||
17 | VerticalAlignment="Bottom" |
||
18 | Background="Transparent" |
||
19 | BorderThickness="0" |
||
20 | Foreground="LightSlateGray" |
||
21 | Opacity="0.5" /> |
||
22 | <TextBlock
|
||
23 | x:Name="splashText" |
||
24 | Height="17.5" |
||
25 | HorizontalAlignment="Left" |
||
26 | VerticalAlignment="Bottom" |
||
27 | xml:space="preserve" |
||
28 | FontWeight="ExtraBold" |
||
29 | Foreground="AntiqueWhite" |
||
30 | TextAlignment="Center"> Loading...</TextBlock> |
||
31 | 32af2c3b | djkim | </Grid>
|
32 | </Window> |