Blank screen can be seen when trying to download .xaml page, after few seconds page can be seen, Its requirement that we cant use splash screen while loading page
below is part of code
mainwindow.xaml :-
<Grid Grid.Row="1" Grid.Column="1">
<Border Background="{DynamicResource SC_ListView_Background}" Margin="3,48,3,3" CornerRadius="0,0,3,3">
<Frame Name="ContentFrame" NavigationUIVisibility="Hidden" Focusable="False" Margin="3" />
</Border>
</Grid>
Mainwindow.xaml.cs:-
ContentFrame.Navigate(new Uri("/Calculator.Installer;component/Pages/" + pageName, UriKind.Relative));
we are using .net framework 4.7.2 , Is there a way we can analyse why this issue is happening?
Thanks
Roseline