当前位置:编程学习 > wap >>

silverlight4程序升级到5,关闭子窗口,自动把父窗口变灰失效,对鼠标无反应的解决办法

在silverlight 4时关闭子窗口从来不把父窗口变灰失效,一切正常。

最近把程序从4升到5,发现下载进程窗口完事后,子窗口消失,自动把父窗口变灰失效,脑袋都大,不知哪里出错。

Visual studio根本不报错,后来采用逐步隔离法,发现是子窗口消失自动把父窗口变灰失效,

搜索 child window disable parent window,找到解决办法

很多人抱怨silverlight这个问题。

解决办法是

在子窗口的constructor里加上一句就行

this.Closed += (s, eargs) => { Application.Current.RootVisual.SetValue(Control.IsEnabledProperty, true); };
      



摘自 cjq1234的专栏
补充:移动开发 , Windows Phone ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,