I have a problem with my FileOpenPicker-app. If I select an item in my GridView, the item will be added to the FileOpenPickerUI, it works fine. But if I deselect an Item in the FileOpenPickerUI, it won´t deselect in my GridView.
So I added the Event:
_fileOpenPickerUI.FileRemoved += FilePickerUI_FileRemoved;
This is the method:
private async void FilePickerUI_FileRemoved(FileOpenPickerUI sender, FileRemovedEventArgs args)
{
//DO SOMETHIG
}
This is the documentation: http://msdn.microsoft.com/de-de/library/windows/apps/windows.storage.pickers.provider.fileopenpickerui.fileremoved
How can I react to the deselected item? How can I deselect it in my GridView?