Hi,
I'm having the following Frame in SL4 app. What I want to do is to get a page object navigated inside of the frame to do unit testing (I don't need a URI).
<navigation:Frame Margin="0,0,0,0" JournalOwnership="OwnsJournal" Source="{Binding CurrentPage}">
<navigation:Frame.UriMapper>
<uriMapper:UriMapper>
<uriMapper:UriMapping Uri="/User" MappedUri="/Views/UserPage.xaml"/>
<uriMapper:UriMapping Uri="/Login" MappedUri="/Views/LoginPage.xaml"/>
<uriMapper:UriMapping Uri="/{pageName}" MappedUri="/Views/{pageName}.xaml"/>
</uriMapper:UriMapper>
</navigation:Frame.UriMapper>
Could anyone please tell me how to do that?
Thanks in advance,
yokyo