詳細信息頁面發送詳細信息:通過短信
// 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的作爲短信內容的詳細信息?
我會非常擔心,如果你可以通過電話發送短信,而用戶不知道.. – 2013-02-18 03:28:03
(snide模式)是Windows Phone 7我真誠懷疑你可以在他們的許可下做到這一點。 :-)(snide模式關閉) – 2013-02-18 03:28:51