如何检测用户是否在Silverlight App中关闭浏览器?
我们可以以某种方式抓住它以便以后保存在数据库中吗?
有任何线索吗?
答案 0 :(得分:2)
在App.xaml.cs类中,您可以订阅Exit事件。
public partial class App : Application
{
public App()
{
this.Exit += this.Application_Exit;
InitializeComponent();
}
private void Application_Exit(object sender, EventArgs e)
{
Debug.WriteLine("Application Exiting");
}
}