How can I pass the framworkElement and use an async keyword too in this code?
SaveImage = new RelayCommand<FrameworkElement>(frameworkElementForPrint =>
{
StorageFile file = await PickImageFileToSave();
SaveVisualElementToFile(frameworkElementForPrint, file);
});
Becaue now the await can not be used...