Hello All,
I am populating my frame from different pages and showing the output as a grid.
Following is my xaml code :-
<Frame x:Name="mainFrame" Grid.Row="1" JournalOwnership="UsesParentJournal" />
and xaml.cs :-
mainFrame.Source = New Uri("Views/ProductsPage.xaml", UriKind.Relative);
But I want to change the selected/unselected (focused/non-focused) row colors in this frame and I am not able to do that.
Could someone please help me with the same ?
Thanks a ton in advance :)