Hey i'm stucked here from last 3 days and tried as hell of possibilities, I have wpf window called 'Mainwindow.xaml' i want to navigate a wpf page named 'addNewTech.xaml' keeping 'Manwindow.xaml' open in background please help me out..
Thank you..
First. Add Frame in MainWindow.
For example:
Use this namespace xmlns:local="clr-namespace:System.Windows.Controls;assembly=PresentationFramework"
<Grid>
<local:Frame Name="MainFrame" NavigationUIVisibility="Hidden" >
</local:Frame>
</Grid>
call AddNewTech in MainWindow.cs to load page into MainWindow.
MainFrame.Navigate(new Uri("addNewTech.xaml",UriKind.Relative));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With