Good night I'm using frame.navigate
to change pages and to pass an object as a parameter on windowsphone until all quiet my doubt is how do I pass another parameter that comes from another page without problem. An error is occurring because when trying to pass another parameter it falls on the first and hangs like to know how to do the treatment to differentiate the parameters sent from different pages. Example
protected override void OnNavigatedTo(NavigationEventArgs e){
this.navigationHelper.OnNavigatedTo(e);
if(e. tratamento que estou em duvida = objeto cliente){
Cliente clienteRecebido = (Cliente)e.Parameter;
tbIdCliente.Text = Convert.ToString(clienteRecebido.idCliente);
tbCliente.Text = clienteRecebido.razao;
tbDataPedido.Text = "01/01/2015";
}else if(e.tratamento que estou em duvida = objeto produto){
//classe protudo e seus atributos etc
}
}