ok so i want to screen capture the layout for an app im working on i would like to set screen capture to a button or applicationbar item and after capture go directly into email with that screen shot to send off
i seen here : How to take a screenshot and send by email programaticly on dotnet
and here: C# Take ScreenShot of .net control within application and attach to Outlook Email
but im not sure it applies to windows phone 8. I know you can take a screenshot via home button and power button but i would like this done in one swoop if possible
i intially was going to have textboxes filled out and them have an email generated looking somehting like this
private void email_Click(object sender, EventArgs e)
{
EmailComposeTask emailComposeTask = new EmailComposeTask();
string first = infoBox1.Text;
string second = infoBox2.Text;
string third = infoBox3.Text;
string fourth = infoBox4.Text;
string one = amountBox1.Text;
string two = amountBox2.Text;
string three = amountBox3.Text;
string four = amountBox4.Text;
emailComposeTask.To = "";
emailComposeTask.Body =
first + " " + " " + " " + " " + " " + " " + " " + one + Environment.NewLine +
second + " " + " " + " " + " " + " " + " " + " " + two + Environment.NewLine +
third + " " + " " + " " + " " + " " + " " + " " + three + Environment.NewLine +
fourth + " " + " " + " " + " " + " " + " " + " " + four + Environment.NewLine;
but i didnt like the output of it, wasnt properly aligned etc...thanks in advance!