winform Splash加载窗口

本文介绍了一个使用.NET Framework的Windows Forms应用程序示例,展示了如何实现应用启动时显示加载界面,并在后台初始化主窗体的过程。通过设置背景透明度等属性实现了美观的用户体验。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

static ApplicationContext context;
        /// <summary>
        /// 应用程序的主入口点。
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Splash sp = new Splash();
            sp.Show();
            context = new ApplicationContext();
            context.Tag = sp;
            Application.Idle += new EventHandler(Application_idle);
            Application.Run(context);

           // Application.Run(new Form1());
        }

        private static void Application_idle(object sender,EventArgs e)
        {
            Application.Idle -= new EventHandler(Application_idle);
            if (context.MainForm == null)
            {
                Form1 f1 = new Form1();
                context.MainForm = f1;
                f1.Init();
                Splash sp = (Splash)context.Tag;
                sp.Close();
                f1.Show();

            }
        }

 

 

背景透明:

 

 this.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(192)), ((System.Byte)(192)));

            this.TransparencyKey = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(192)), ((System.Byte)(192)));  

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值