c# - how to send content from viewmodel to new page -


i have pivot

<pivotitem header="product">     <gridview itemssource="{x:bind productviewmodel.products}">         <gridview.itemtemplate>             <datatemplate x:datatype="models:product">                 <stackpanel flyoutbase.attachedflyout="{staticresource flayoutbase1}" righttapped="stackpanel_righttapped">                     <textblock text="{x:bind name, mode=oneway}"/>                     <textblock text="{x:bind price, mode=oneway}"/>                 </stackpanel>             </datatemplate>         </gridview.itemtemplate>     </gridview> </pivotitem> 

i have flyout in every product button , when press want send values name , price new page order of product. don't know how because have different viewmodels , fields not same.

while navigating can send parameters.

check reference.

http://www.geekchamp.com/tips/how-to-pass-data-between-pages-in-windows-phone-alternatives


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -