splashwnd.cs

来自「这是.net2005学习不可缺少的教程」· CS 代码 · 共 27 行

CS
27
字号
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication1
{
    public partial class splashWnd : Form
    {
        public splashWnd()
        {
            InitializeComponent();
        }

        private void splashWnd_Load(object sender, EventArgs e)
        {
            for (float t = 1f; t > 0f; t -= 0.01f)
            {
                this.Opacity = t;
                this.Refresh();
            }
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?