I was using the following code to display several images in a listview as if it were a library.
For Each arquivos In FileIO.FileSystem.GetFiles(caminho, FileIO.SearchOption.SearchAllSubDirectories, "*.png", "*.jpg")
Using str As Stream = File.OpenRead(arquivos)
img = Image.FromStream(str)
imagem.Images.Add(img)
End Using
ListView1.LargeImageList = imagem
ListView1.Items.Add(arquivos, contador)
contador += 1
I'd like to know if I can do something like this, but with video. Showing a frame of the video and clicking to open the video.
Ex: Movies and TV from Microsoft and YouTube.