In this post I am going to show how to send mail from Windows phone 7(wp7).
For send mail we need to use EmailComposeTask and EmailAddressChooserTask (for selecting email id in phone).
Then highlighted code is here for sending mail.
Code:-
Microsoft.Phone.Tasks.EmailComposeTask emailComposeTask = new Microsoft.Phone.Tasks.EmailComposeTask();
emailComposeTask.To = "tomail@localhost.com";
emailComposeTask.Cc = "ccmail@localhost.com";
emailComposeTask.Subject ="Your Subject here";
emailComposeTa...
Read More
Windows Phone Developer
<p>All about windows phone 7 development</p>
Windows Phone Developer Tools January 2011 Update
Just few before Microsoft released Windows Phone Developer Tools update (Jan 2011).
You can download it here http://www.microsoft.com/downloads/en/details.aspx?FamilyID=49B9D0C5-6597-4313-912A-F0CCA9C7D277&displaylang=en
January 2011 Update to the Windows Phone Developer Tools providing bug fixes, a new emulator, and utilities. This update is composed of two installation files and includes the contents of the deprecated October 2010 Update.
In this Updates:-
There are TWO separate in...
Read More
Multiline textbox in Windows Phone 7
In this post I am going to explain about Textarea(Multiline) in windows phone 7 (wp7). We did not have textarea control, but we can create textarea with Textbox itself. Even for textbox there is no property called Mutiline="True". It is easy to do check it..
In Silverlight for Windows Phone didn't have textarea control. So, we need to use same Textbox as a textarea by changing few properties like AcceptsReturn value to True (AcceptsReturn="True"), to allow enter key in the textbox. we can see T...
Read More