mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-19 04:34:18 +01:00
added splash page
This commit is contained in:
8
MediaBrowser.ServerApplication/Splash/SplashWindow.xaml
Normal file
8
MediaBrowser.ServerApplication/Splash/SplashWindow.xaml
Normal file
@@ -0,0 +1,8 @@
|
||||
<Window x:Class="MediaBrowser.ServerApplication.Splash.SplashWindow"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
Height="300" Width="400" WindowStartupLocation="CenterScreen" Title="Media Browser Server" ShowInTaskbar="True" WindowStyle="None" BorderThickness="1" BorderBrush="#cccccc" AllowsTransparency="True">
|
||||
<Grid>
|
||||
<TextBlock>Loading</TextBlock>
|
||||
</Grid>
|
||||
</Window>
|
||||
27
MediaBrowser.ServerApplication/Splash/SplashWindow.xaml.cs
Normal file
27
MediaBrowser.ServerApplication/Splash/SplashWindow.xaml.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace MediaBrowser.ServerApplication.Splash
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for SplashWindow.xaml
|
||||
/// </summary>
|
||||
public partial class SplashWindow : Window
|
||||
{
|
||||
public SplashWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user