What's best practice for a WPF windows application re where to store confirm data that a child window captures?
That is, say from main page you click "configure" to jump to a configuration window/dialog. Where should the config data be stored so that when finished the main screen can access it when the user clicks on a button that initiates an event that needs the config data.
Would putting the data as instance variables in the main window class be the normal way?