|
@@ -7,12 +7,21 @@
|
|
|
xmlns:gif="http://wpfanimatedgif.codeplex.com"
|
|
|
mc:Ignorable="d" ShowInTaskbar="False" WindowStyle="None"
|
|
|
ResizeMode="NoResize" WindowStartupLocation="CenterScreen"
|
|
|
- Title="LoadingWindow" Height="200" Width="200">
|
|
|
- <Grid Background="{StaticResource MainColor}">
|
|
|
- <Image
|
|
|
- gif:ImageBehavior.AnimatedSource="/Images/Processing.gif"
|
|
|
- HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
|
- Height="50"
|
|
|
- gif:ImageBehavior.AnimationSpeedRatio="1.5"/>
|
|
|
- </Grid>
|
|
|
+ Title="LoadingWindow" Height="180" Width="160"
|
|
|
+ Background="Transparent"
|
|
|
+ AllowsTransparency="True"
|
|
|
+ x:Name="Window">
|
|
|
+ <Border Background="{StaticResource AccentColor}"
|
|
|
+ BorderBrush="{StaticResource MainColor}" BorderThickness="1.5"
|
|
|
+ CornerRadius="10">
|
|
|
+ <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
|
+ <Image
|
|
|
+ gif:ImageBehavior.AnimatedSource="{Binding LoadingImage, ElementName=Window}"
|
|
|
+ Height="70"
|
|
|
+ gif:ImageBehavior.AnimationSpeedRatio="1.5"/>
|
|
|
+ <TextBlock Foreground="White" Text="PixiEditor"
|
|
|
+ FontFamily="Roboto" FontWeight="900" FontSize="28"
|
|
|
+ Margin="0,10,0,0"/>
|
|
|
+ </StackPanel>
|
|
|
+ </Border>
|
|
|
</Window>
|