本文整理汇总了C#中System.Windows.SplashScreen类的典型用法代码示例。如果您正苦于以下问题:C# SplashScreen类的具体用法?C# SplashScreen怎么用?C# SplashScreen使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SplashScreen类属于System.Windows命名空间,在下文中一共展示了SplashScreen类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
public static void Main() {
SplashScreen splashScreen = new SplashScreen("resources/splashscreen.jpg");
splashScreen.Show(true);
QuizGame.App app = new QuizGame.App();
app.InitializeComponent();
app.Run();
}
示例2: Main
public static void Main() {
SplashScreen splashScreen = new SplashScreen("splashscreen1.png");
splashScreen.Show(true);
EERIL.ControlSystem.App app = new EERIL.ControlSystem.App();
app.InitializeComponent();
app.Run();
}
示例3: Main
public static void Main() {
SplashScreen splashScreen = new SplashScreen("splashscreen.png");
splashScreen.Show(true);
inventory.App app = new inventory.App();
app.InitializeComponent();
app.Run();
}
示例4: Main
public static void Main() {
SplashScreen splashScreen = new SplashScreen("install_spl.jpg");
splashScreen.Show(true);
LEDX.App app = new LEDX.App();
app.InitializeComponent();
app.Run();
}
示例5: Main
public static void Main() {
SplashScreen splashScreen = new SplashScreen("ezygoezysplash.jpg");
splashScreen.Show(true);
GUI_for_0._1.App app = new GUI_for_0._1.App();
app.InitializeComponent();
app.Run();
}
示例6: Main
public static void Main() {
SplashScreen splashScreen = new SplashScreen("images/splash.png");
splashScreen.Show(true);
Assignment.App app = new Assignment.App();
app.InitializeComponent();
app.Run();
}
示例7: Main
public static void Main() {
SplashScreen splashScreen = new SplashScreen("splashscreen2.png");
splashScreen.Show(true);
Modelisator.App app = new Modelisator.App();
app.InitializeComponent();
app.Run();
}
示例8: OnStartup
protected override void OnStartup(StartupEventArgs e)
{
if (!SingleInstance.InitializeAsFirstInstance(SignalExternalCommandLineArgs))
Environment.Exit(0);
var appSplash = new SplashScreen("splash.png");
appSplash.Show(false);
{
base.OnStartup(e);
Config.ShowConsole = true;
Context.Startup();
}
appSplash.Close(TimeSpan.FromMilliseconds(300));
if (false)
{
ShutdownMode = ShutdownMode.OnExplicitShutdown;
Context.ProcessingQueueEmpty += Shutdown;
Context.Log += OnLog;
Context.ProcessingProcessChanged += OnProcessingProcessChanged;
Context.ProcessingProgressChanged += OnProcessingProgressChanged;
}
else
{
ShowMainWindow();
}
HandleArgs(e.Args);
}
示例9: Main
public static void Main() {
SplashScreen splashScreen = new SplashScreen("osschedulerscreen.png");
splashScreen.Show(true);
OSScheduler.App app = new OSScheduler.App();
app.InitializeComponent();
app.Run();
}
示例10: Main
public static void Main() {
SplashScreen splashScreen = new SplashScreen("resources/logo%20design%20-%202_splashscreen%20new%20(paddy).jpg");
splashScreen.Show(true);
ComCon.App app = new ComCon.App();
app.InitializeComponent();
app.Run();
}
示例11: Main
public static void Main() {
SplashScreen splashScreen = new SplashScreen("bea-cukai2.jpg");
splashScreen.Show(true);
PAU.App app = new PAU.App();
app.InitializeComponent();
app.Run();
}
示例12: Main
public static void Main() {
SplashScreen splashScreen = new SplashScreen("inicio.png");
splashScreen.Show(true);
Aprender_Teclado.App app = new Aprender_Teclado.App();
app.InitializeComponent();
app.Run();
}
示例13: OnStartup
protected override void OnStartup(StartupEventArgs e)
{
LicenseProvider.Verify();
SplashScreen splashScreen = new SplashScreen("Images/splash_screen.png");
splashScreen.Show(true);
base.OnStartup(e);
}
示例14: Main
public static void Main() {
SplashScreen splashScreen = new SplashScreen("images/splashscreen.png");
splashScreen.Show(true);
APOD_Controller.App app = new APOD_Controller.App();
app.InitializeComponent();
app.Run();
}
示例15: Main
public static void Main() {
SplashScreen splashScreen = new SplashScreen("resources/poster%20ri%20500.jpg");
splashScreen.Show(true);
Geoton.App app = new Geoton.App();
app.InitializeComponent();
app.Run();
}