I just started with WPF and just now worked with open file dialog to display single image and worked perfect.
This is for single Image:
Dim ofdlg As New Microsoft.Win32.OpenFileDialog
If ofdlg.ShowDialog.Value Then
Image1.Source = New BitmapImage(New Uri(ofdlg.FileName, UriKind.Absolute))
End If
1.Now I need to display multiple images using folder browser dialog. And which control I need to be used to do display multiple images and how do I do that?
2.I have worked with winforms and I have a user control and I am trying to import that control in the WPF application and it's giving me an error stating that It cannot be placed on to the tool box. So what do I need to do in order to place a winform user control?