async private void shareFile_Click(object sender, Windows.UI.Xaml.RoutedEventArgs e)
        {
            string      installPath = Package.Current.InstalledLocation.Path;
            StorageFile file        = await StorageFile.GetFileFromPathAsync(installPath + @"\Assets\Share\espresso_450x450.jpg");

            ShareHelper.ShareFiles(file);
        }