如何检测用户是否在Silverlight App中关闭浏览器

时间:2015-01-23 11:54:13

标签: .net silverlight browser

如何检测用户是否在Silverlight App中关闭浏览器?

我们可以以某种方式抓住它以便以后保存在数据库中吗?

有任何线索吗?

1 个答案:

答案 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");
    }
}