我想從一個頁面導航到另一個頁面。
如果我的目標頁面的構造函數等規定,如何導航到UWP中的參數化構造函數?
public Bills()
{
this.InitializeComponent();
}
對於正常航行,我使用
Frame.Navigate(typeof(Billing.Bills));
,其工作的罰款。想,如果我的目標頁面的構造函數包含像一些參數,
public Bills(string strBillType, string strExchangeAmount, RootObject objRoot, string strPaymentType)
{
this.InitializeComponent();
}
在上述情況
我怎麼可以導航到目的地頁面
?。
上retrive @AndriiKrupka你是對的,我已搜查,但沒有發現這是 – Sagar
我猜你搜索不正確的請求。 –
可能是任何感謝您的幫助@AndriiKrupka – Sagar