I'm developing a WPF and C# application and i have problems to pass data between a page and a window.
How is the best way to do it?
Thanks!
I'm developing a WPF and C# application and i have problems to pass data between a page and a window.
How is the best way to do it?
Thanks!
You can use a delegateevent to do this.
For example in your MainWindow :
And then in your Page1:
Hope that helps.