Compose Email window in windows store application
Hii Can anyone help me to open compose email window in windows store application of version window 8.1 with attachment
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Kishor Bikram OliPosted Apr 28, 2016, 10:51 PM
While initializing,
var dtm = Windows.ApplicationModel.DataTransfer.DataTransferManager.GetForCurrentView();
dtm.DataRequested += Dtm_DataRequested;
private async void Dtm_DataRequested(Windows.ApplicationModel.DataTransfer.DataTransferManager sender, Windows.ApplicationModel.DataTransfer.DataRequestedEventArgs args)
{
DataPackage dataToShare = args.Request.Data;
dataToShare.SetBitmap(imageStream);
}
private void btn_Share_Click(object sender, RoutedEventArgs e)
{
Windows.ApplicationModel.DataTransfer.DataTransferManager.ShowShareUI();
}