A list of files (pictures) can be searched and shown in listbox

This commit is contained in:
2020-08-02 23:28:42 +02:00
parent 6949a7ba33
commit 4e56dadd25
8 changed files with 236 additions and 10 deletions

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ImageHandlingLibrary.InterFaces
{
public interface IDialogs
{
List<FileInfo> ChooseFiles();
}
}