﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - Crosslight - How to Use Crosslight v2 with NavigationAction to pass NavigationParameter</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-v2-with-NavigationAction-to-pass-NavigationParameter/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>How to Use Crosslight v2 with NavigationAction to pass NavigationParameter</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-v2-with-NavigationAction-to-pass-NavigationParameter/</link><pubDate>Thu, 21 Aug 2014 23:32:11 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Glad to hear that overriding Navigated event to pass navigation parameter help.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Should you need further assistance or run into any problems regarding our controls, feel free to post it into our forum. We would be happy to assist you again.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>How to Use Crosslight v2 with NavigationAction to pass NavigationParameter</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-v2-with-NavigationAction-to-pass-NavigationParameter/</link><pubDate>Tue, 19 Aug 2014 12:17:13 GMT</pubDate><dc:creator>dfugaban@silentpartnersoft.com</dc:creator><description>&lt;p&gt;That should work. Thanks!&lt;/p&gt;</description></item><item><title>How to Use Crosslight v2 with NavigationAction to pass NavigationParameter</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-v2-with-NavigationAction-to-pass-NavigationParameter/</link><pubDate>Tue, 19 Aug 2014 02:59:48 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;I override Navigated event and use following snippet code to pass User data to the target viewmodel, ChangePasswordViewModel.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;public override void Navigated(NavigatedParameter parameter)
{
    base.Navigated(parameter);
    var userProfileViewModel = parameter.Sender as UserProfileViewModel;

    if (userProfileViewModel != null)
    {
        User item = userProfileViewModel.Item;

        if (item != null)
        {
            //do something in here
        }
    }
}&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Please refer to Business project template and add the above code in ChangePasswordViewModel.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Hope this help.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>How to Use Crosslight v2 with NavigationAction to pass NavigationParameter</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-v2-with-NavigationAction-to-pass-NavigationParameter/</link><pubDate>Fri, 15 Aug 2014 12:45:20 GMT</pubDate><dc:creator>dfugaban@silentpartnersoft.com</dc:creator><description>&lt;p&gt;We just need to pass data to the target viewmodel, and capture and process that data from &lt;b&gt;Navigated &lt;/b&gt;event.&lt;/p&gt;</description></item><item><title>How to Use Crosslight v2 with NavigationAction to pass NavigationParameter</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-v2-with-NavigationAction-to-pass-NavigationParameter/</link><pubDate>Fri, 15 Aug 2014 06:02:01 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;It is not possible to pass NavigationParameter with NavigationAction.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Could you please inform me more detail about the scenario that you want to achieve? There might be a workaround or solution by using different approach.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>How to Use Crosslight v2 with NavigationAction to pass NavigationParameter</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-v2-with-NavigationAction-to-pass-NavigationParameter/</link><pubDate>Fri, 15 Aug 2014 00:27:49 GMT</pubDate><dc:creator>dfugaban@silentpartnersoft.com</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;&lt;br&gt;How do you use &lt;b&gt;FormMetaData&lt;/b&gt;, specifically binding a &lt;b&gt;NavigationParameter &lt;/b&gt;to the &lt;b&gt;NavigationAction &lt;/b&gt;attribute class? Here's our code snippet, so what's the next thing to do to accomplish data passing?&lt;br&gt;&lt;br&gt;&lt;/p&gt;&lt;pre&gt;[Display(Caption = "Machine Meters")]
[Editor(EditorType.Navigation)]
[NavigateAction(typeof(MachineListViewModel))]
public static string MachineMeters;&lt;/pre&gt;&lt;p&gt;&lt;br&gt;Thanks!&lt;/p&gt;</description></item></channel></rss>