通过短信发送详细信息

时间:2013-02-18 03:15:17

标签: c# windows-phone-7 mvvm sms windows-phone-7.1

详细信息页面:

// 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];
    }
}

是否可以将存储在DataContext中的详细内容作为短信发送?

1 个答案:

答案 0 :(得分:-1)

可能会对您有所帮助:http://www.ginktage.com/2011/03/how-to-send-sms-in-windows-phone-7-using-c/

将“Body”属性设置为包含详细内容的文本。