SplashWindow.xaml 489 B

12345678
  1. <Window x:Class="MediaBrowser.ServerApplication.Splash.SplashWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Height="300" Width="400" WindowStartupLocation="CenterScreen" Title="Media Browser Server" ShowInTaskbar="True" WindowStyle="None" BorderThickness="1" BorderBrush="#cccccc" AllowsTransparency="True">
  5. <Grid>
  6. <TextBlock>Loading</TextBlock>
  7. </Grid>
  8. </Window>