简体   繁体   中英

Send Details via sms

Detail page:

// When page is navigated to set data context to selected item in list
protected override void OnNavigatedTo(NavigationEventArgs e)
{
    string selectedIndex = "";
    if (NavigationContext.QueryString.TryGetValue("selectedItem", out selectedIndex))
    {
        int index = int.Parse(selectedIndex);
        DataContext = App.ViewModel.Items[index];
    }
}

is it possible to send details content that are stored in DataContext as a sms?

May be it will help you: http://www.ginktage.com/2011/03/how-to-send-sms-in-windows-phone-7-using-c/

Set “Body” property to a text with details content.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM