項目が選択されたときに longlistselector データを新しいページに表示する必要があります..エラー メッセージ System.Argument.Exception が表示されるので、この問題を解決するのを手伝ってください..
私のselectedindex変更コード..
private void OrganizationList_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
NavigationService.Navigate(new Uri("Organization_Details.xaml?selectedItem" +Organization.Name , UriKind.Relative));
}
エラー:
ナビゲートされたページでは、テキストブロックを使用してデータを表示しています..コードは..
Organization org;//Class name with obj
public Organization_Details()
{
InitializeComponent();
org_name.Text = org.name;//textblock(org_name)-->needs to set the data from the b4 page..
}
ナビゲートされたページのエラー...