码迷,mamicode.com
首页 > 其他好文 > 详细

navigate frame框架

时间:2015-10-02 00:11:13      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

string uriText = String.Format("/Product.xaml?productID={0}&type={1}", productID, productType);
mainFrame.Navigate(new Uri(uriText), UriKind.Relative);

  

int productID, type;
if (this.NavigationContext.QueryString.ContainsKey("productID"))
 productID = Int32.Parse(this.NavigationContext.QueryString[ "productID"]);
if (this.NavigationContext.QueryString.ContainsKey("type"))
 type = Int32.Parse(this.NavigationContext.QueryString[ "type"]);

 

navigate frame框架

标签:

原文地址:http://www.cnblogs.com/xlyg-14/p/4851751.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!