我有一個我的Pushpins的OnClick事件如下。如何將變量傳遞給另一個Silverlight頁面?
void BusStop1061_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{
MessageBox.Show("Buses from this station: City Link");
}
我想給bustop號傳遞到另一個頁面,併爲int「PassedVariable」
private void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e)
{
string site = "http://www.sourceDomain?stop=" + PassedVariable;
webBrowser1.Navigate(new Uri(site, UriKind.Absolute));
}
我想在第一頁上創建的整型,然後將它傳遞到頁面2使用urimapping,但它似乎並沒有工作,我想有人可能有更好的選擇
我曾看過類似的帖子,但他們不完全回答我的問題。
可能重複[調用從另一種形式的C#變量(HTTP ://stackoverflow.com/questions/5928071/call-variable-from-another-form-c) –
也http://stackoverflow.com/questions/5865588/how-to-pass-value-from-textbox-to -label-on-different-form和http://stackoverflow.com/questions/4247807/passing-variable-between-winforms –
和http:// stackoverflow。com/questions/7316965/data-sharing-multiple-viewmodels/7338294#7338294 –