C#winform,对窗体实现了淡入效果,但是淡出效果怎么实现?

淡入效果:如窗口button1单击lightl1=newlight();l1.show()子窗体light的timer控件if(this.opacity!=1){this... 淡入效果:如窗口
button1单击light l1=new light();
l1.show()
子窗体light的timer控件
if(this.opacity!=1)
{
this.opacity +=0.1;
}
子窗体light的load事件中写
this.opacity=0;
timer1.start();
这样就实现了淡入效果。

那么我在父窗体中添加一个button2来关闭light子窗体,如何实现light子窗体淡出效果呢?
展开
 我来答
卡老罗
推荐于2016-06-20 · TA获得超过193个赞
知道小有建树答主
回答量:233
采纳率:0%
帮助的人:179万
展开全部
//覆写窗体关闭事件
protected override void OnClosing(CancelEventArgs e)
{
e.Cancel = true;
timer2.Start();
}

private void timer2_Tick(object sender, EventArgs e)
{
this.Opacity -= 0.1;
}

已测试,Timer是另加的。
更多追问追答
追问
怎么覆盖?我的关闭事件是这样的。
private void button2_Click(object sender, EventArgs e)
{

if (l1 != null)
{
l1.Hide();
}
if (s1 != null)
{
s1.Hide();
}
if (c1 != null)
{
c1.Hide();
}
if (a1 != null)
{
a1.Hide();
}
}
其中的l1就是light窗口。
追答
这是完整的,你对照一下。
//窗体加载
private void Frm_Light_Load(object sender, EventArgs e)
{
this.Opacity = 0;
this.timer1.Start();
}

private void timer1_Tick(object sender, EventArgs e)
{
if (this.Opacity != 1)
{
this.Opacity += 0.1;
}

if (this.Opacity == 1)//不加这一句,如果在窗体淡入的过程中就点击了关闭会出问题。
{
timer1.Stop();
}
}

//覆写窗体关闭事件
protected override void OnClosing(CancelEventArgs e)
{
e.Cancel = true;
if (this.Opacity != 1)//如果窗体还没有完全淡出,点击关闭也能正常关掉。
{
timer1.Stop();
}
timer2.Start();
}

private void timer2_Tick(object sender, EventArgs e)
{
this.Opacity -= 0.1;
}

//点击子窗体上的关闭按钮
private void btnCancel_Click(object sender, EventArgs e)
{
this.Close();
}

//父窗体上的关闭按钮
private void button2_Click(object sender, EventArgs e)
{
if(l1 != null)
{
li.Close();
}
}

//已测试,全部正确。
qiao6174
2011-08-27 · TA获得超过163个赞
知道答主
回答量:92
采纳率:0%
帮助的人:53.6万
展开全部
light l1 = null; // 全局

button2里
l1.opacity=1;
timer1.start();

timer控件
if(this.opacity!=0)
{
this.opacity-=0.1;
}
更多追问追答
追问
怎么写?我这是在父窗体里面的按钮关闭子窗体,实现子窗体淡出关闭
追答
light l1 = null; // 全局

button2里
l1.opacity=1;
timer1.start();

timer控件
if(l1.opacity!=0)
{
l1.opacity-=0.1;
}
else
{
l1.Close();
}

参考资料: li

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式