Ejemplo n.º 1
0
 async void BluetoothManager_RemoveFirstFileHandler()
 {
     await DispatcherHelper.RunAsync(() =>
     {
         if (!filesToShare.Count.Equals(0))
         {
             FilesToShare.RemoveAt(0);
         }
     });
 }
Ejemplo n.º 2
0
 async void BluetoothManager_FailedHandler(FileItemToShare f)
 {
     await DispatcherHelper.RunAsync(() =>
     {
         FileItemToShare file = filesToShare[0];
         file.ShareStatus     = FileShareStatus.Error;
         file.Progress        = 0;
         FilesToShare.RemoveAt(0);
         FilesToShare.Add(file);
     });
 }