i have a ViewModel that have a Method to receive a Func<Uri,bool>
for navigation and a button that i implement ICommand
which execute that method(i instantiate ViewModel in Code behind and pass Navigate
of Frame
to that).
i navigate between pages properly but there is a no idea to pass an object(e.g Person) to another page because there is NO association between ViewModel
s
(also i can't use any FrameWork and i don't want to use QueryString
)