In my MainWindow.xaml, I have the following code:
<Frame Name="FrmView" Source="Overview.xaml" NavigationUIVisibility="Hidden" />
In Overview.xaml.cs, now I want to get an ObservableCollection, which is declared and initialized in MainWindow.xaml.cs. Is there a way to access MainWindow from a frame / page?
source
share