0

我需要在退出 Silverlight 应用程序之前和关闭应用程序之后执行一些异步操作。
例如:

 RoutedEventArgs re;
 private void Application_Exit(RoutedEventArgs e){
    re=e;
    e.Cancel=true;
    ExecuteAsincOperation();
 }
 .....
 private void AsincOperationCompleted(){
     e.Cancel=false;
 }

我该怎么做(如果可能的话)?

4

0 回答 0