I want to navigate from one page to another.
If my destination page constructor is defined like ,
public Bills()
{
this.InitializeComponent();
}
For normal navigation I am using
Frame.Navigate(typeof(Billing.Bills));
and its working fine. suppose if my destination page constructor is containing some parameters like ,
public Bills(string strBillType, string strExchangeAmount, RootObject objRoot, string strPaymentType)
{
this.InitializeComponent();
}
in above situation how can I navigate to the destination page?.