Exemple #1
0
 //Show the File Picker Popup Task
 async Task Popup_Show_FilePicker(string targetPath, int targetIndex, bool storeIndex, FrameworkElement previousFocus)
 {
     try
     {
         async Task TaskAction()
         {
             try
             {
                 await Popup_Show_FilePicker_Task(targetPath, targetIndex, storeIndex, previousFocus);
             }
             catch { }
         }
         await AVActions.TaskStartReturn(TaskAction);
     }
     catch { }
 }