aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/UI/Splash.xaml
diff options
context:
space:
mode:
authorLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-09-17 14:47:51 -0400
committerLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-09-17 14:47:51 -0400
commitfe427bc7f4f1a709c43c8ecb035b07325ed710b9 (patch)
treee0bc49677487c60504968e1b5e2e0df88a4b29f9 /MediaBrowser.Common/UI/Splash.xaml
parentfb88e4d5fcd02ada0999a09b68a49617f4a35309 (diff)
Removed progress value from startup
Diffstat (limited to 'MediaBrowser.Common/UI/Splash.xaml')
-rw-r--r--MediaBrowser.Common/UI/Splash.xaml7
1 files changed, 4 insertions, 3 deletions
diff --git a/MediaBrowser.Common/UI/Splash.xaml b/MediaBrowser.Common/UI/Splash.xaml
index f52d9ddf1f..7781841b26 100644
--- a/MediaBrowser.Common/UI/Splash.xaml
+++ b/MediaBrowser.Common/UI/Splash.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Controls="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
Title="MediaBrowser"
- Height="280"
+ Height="230"
Width="520"
ShowInTaskbar="True"
ResizeMode="NoResize"
@@ -26,7 +26,8 @@
</Window.Background>
<Grid Name="splashGrid">
<Image x:Name="imgLogo" HorizontalAlignment="Left" VerticalAlignment="Top" Stretch="Uniform" Grid.Row="0" Margin="10 10 10 10" Source="../Resources/Images/mblogoblack.png"/>
- <ProgressBar Name="pbProgress" Minimum="0" Maximum="100" HorizontalAlignment="Left" Height="24" Margin="30,110,30,0" Width="460" Grid.Row="1"/>
- <TextBlock Name="lblProgress" Margin="0,190,10,0" VerticalAlignment="Center" HorizontalAlignment="Center" Grid.Row="2" FontSize="18" Foreground="Black" Text="Label"></TextBlock>
+ <StackPanel Margin="0,130,10,0" VerticalAlignment="Center" HorizontalAlignment="Center" Grid.Row="2" Orientation="Horizontal">
+ <TextBlock Name="lblProgress" FontSize="18" Foreground="Black" Text="Label"></TextBlock>
+ </StackPanel>
</Grid>
</Controls:MetroWindow>