public void Refresh()
 {
     try
     {
         currentDisplayable?.DisplayOn(displayElement);
     }
     catch (System.IO.FileNotFoundException)
     {
         directoryPicker.ReadDisplayables();
         if (directoryPicker.IsEmpty)
         {
             return;
         }
         Next();
     }
 }
Example #2
0
 public void ReloadContent() => directoryPicker.ReadDisplayables();