TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Nanthini Subramanian
NA
3
2.7k
Picking up and saving a contact in windows phone 7 app
Feb 6 2015 1:32 AM
I have tried to choose contact from contact list in windows phone 7 app and I display it in a textbox. Now I want to save that contact in that textbox for future use of that application. How I can save a chosen contact from a windows phone in a text box. This is the code I tried.
PhoneNumberChooserTask phoneNumberChooserTask;
phoneNumberChooserTask = new PhoneNumberChooserTask();
phoneNumberChooserTask.Completed += phoneNumberChooserTaskOnCompleted;
phoneNumberChooserTask.Show();
private void phoneNumberChooserTaskOnCompleted(object sender, PhoneNumberResult phoneNumberResult)
{
if (phoneNumberResult.TaskResult == TaskResult.OK)
{ textBox1.Text = phoneNumberResult.PhoneNumber; }
}
Suggest me some codes. Thanks in advance.
Reply
Answers (
1
)
Geocoding in windows phone 8
how to add a prefix in every column of table by coding?