Hi guys so I have a WPF application where my main window contains two frames within it like so.
<Window> <Frame source="term.xaml"/> <Frame source="flag.xaml"/> </Window>
I am trying to share data between term and flag.xaml. They both have their own .XAML.cs and I cannot figure out how on a button click to move data from term to flag. Could someone lead me in the right direction.
Note this is a flat program meaning there is only one screen that holds both of these frames within the main window.
Both term and flag are partial classes that are pages.