Is it possible to describe filters of FileOpenPicker?
openPicker.FileTypeFilter.Add(".jpg");
openPicker.FileTypeFilter.Add(".jpeg");
openPicker.FileTypeFilter.Add(".png");
In Windows Forms dialog boxes it was possible:
dialog.Filter = "Text files (*.txt)|*.txt|All Files (*.*)|*.*";