通过短信发送详细信息
本文关键字:详细信息 短信发送 | 更新日期: 2023-09-27 17:59:44
详细页面:
// 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中的详细信息内容作为短信发送?
可能会对您有所帮助:http://www.ginktage.com/2011/03/how-to-send-sms-in-windows-phone-7-using-c/
将"正文"属性设置为包含详细信息内容的文本。