AttemptMissingImageReplacements() public method

public AttemptMissingImageReplacements ( string pathToFolderOfReplacementImages = null ) : void
pathToFolderOfReplacementImages string
return void
Ejemplo n.º 1
0
 private void _rescueMissingImagesToolStripMenuItem_Click(object sender, EventArgs e)
 {
     using (var dlg = new FolderBrowserDialog())
     {
         dlg.ShowNewFolderButton = false;
         dlg.Description         = "Select the folder where replacement images can be found";
         if (DialogResult.OK == dlg.ShowDialog())
         {
             _model.AttemptMissingImageReplacements(dlg.SelectedPath);
         }
     }
 }