教程集 www.jiaochengji.com
教程集 >  操作系统  >  windows  >  正文 to joy, this is the start splash screen of SharpDe

to joy, this is the start splash screen of SharpDe

发布时间:2019-12-12   编辑:jiaochengji.com
教程集为您提供to joy, this is the start splash screen of SharpDe等资源,欢迎您收藏本站,我们将为您提供最新的to joy, this is the start splash screen of SharpDe资源
you know, splash screen is to prepare the application initializing, not to wait for a few seconds. So using timer is a wrong way.
using System;
using System.Reflection;
using System.Drawing;
using System.Collections;
using System.Windows.Forms;
using System.Resources;
using Core.Util;
using Core.Properties;
using Core.AddIns.Codons;
using Core.AddIns;
namespace SharpDevelop {
    
    /// <summary>
    /// This Class is the NCvs main class, it starts the program.
    /// </summary>
    public class SharpDevelopMain
    {
        public static string[] CommandLineArgs;
        
        class SplashScreen : Form
        {
       public SplashScreen()
       {
           TopMost    = true;
           FormBorderStyle = FormBorderStyle.None;
           StartPosition     = FormStartPosition.CenterScreen;
           
           ResourceManager resources = new ResourceManager("IconResources", Assembly.GetCallingAssembly());

您可能感兴趣的文章:
to joy, this is the start splash screen of SharpDe
A Study of WebRTC Security
Python3爬虫利器:Scrapy-Splash的安装
Beginner: Using Servlets to display, insert and up
一个好用的php mysql连接类
Table row drag and drop
TIJ swot_JAVA的初学者(四)
timepicker
聊天软件基础--即时通信工作原理
Java Security Notes (6)

[关闭]
~ ~