详细信息页面:
// 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中的详细内容作为短信发送?
答案 0 :(得分:-1)
可能会对您有所帮助:http://www.ginktage.com/2011/03/how-to-send-sms-in-windows-phone-7-using-c/
将“Body”属性设置为包含详细内容的文本。