C# 半透明渐显窗体

来源:互联网 发布:linux 打开一个文件夹 编辑:程序博客网 时间:2024/06/05 08:55
        private void timer1_Tick(object sender, EventArgs e)        {            this.Opacity += 0.1;              if (this.Opacity >= 1.0)  //当Form完全显示时,停止计时             {                this.timer1.Enabled = false;             }        }        private void Form1_Load(object sender, EventArgs e)        {            this.Opacity = 0;        }

0 0