markus / KCOM / Controls / ProgressControl.xaml @ d18ea2bd
이력 | 보기 | 이력해설 | 다운로드 (969 Bytes)
1 | 32af2c3b | djkim | <Window x:Class="KCOM.Controls.ProgressControl" |
---|---|---|---|
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:KCOM.Controls" |
||
7 | Height="70" Width="300" Background="#FF007acc"> |
||
8 | <Grid>
|
||
9 | <ProgressBar HorizontalAlignment="Left" VerticalAlignment="Bottom" Height="18.1" x:Name="progressBar" Width="300" Background="Transparent" BorderThickness="0" |
||
10 | Foreground="LightSlateGray" Opacity="0.5"/> |
||
11 | <TextBlock HorizontalAlignment="Left" VerticalAlignment="Bottom" TextAlignment="Center" x:Name="splashText" Foreground="AntiqueWhite" FontWeight="ExtraBold" xml:space="preserve" Height="17.5"> Loading...</TextBlock> |
||
12 | </Grid>
|
||
13 | </Window> |