mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 06:16:37 +01:00
17 lines
353 B
C#
17 lines
353 B
C#
|
using System;
|
|||
|
using System.Windows.Forms;
|
|||
|
|
|||
|
namespace splash_xcp_ng
|
|||
|
{
|
|||
|
static class Program
|
|||
|
{
|
|||
|
[STAThread]
|
|||
|
static void Main()
|
|||
|
{
|
|||
|
Application.EnableVisualStyles();
|
|||
|
Application.SetCompatibleTextRenderingDefault(false);
|
|||
|
Application.Run(new SplashForm());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|