Hello,
I am trying to separate App.xaml/App.xaml.cs and other pages in 2 different assemblies. Take an example:
Project A: contains App.xaml/App.xaml.cs
Project B: contains MainPage.xaml/MainPage.xaml.cs
App defines a public property AProperty. I can pass App when navigating to MainPage, but how to access AProperty from MainPage since it's built separately?
Thanks.