I´m actually programming a WPF-application. Now, I´m just a beginner in WPF and so I´ve a problem:
In window A, there is a checkbox with some values. If I click on a button on window A, window B should open. On window B, I have a textfield and a save-button. When I click on the button on window B and close it, the value of the textfield should be in the checkbox on window A.
First, I programmed this with Windows Forms and there I solved it with BindingSource. This doesn´t work in WPF. How can I solve that?
Well, I would say that this nothign to do with
WPF
otWindowsForms
, as idea can be applied in both places. Just use a shared between different formsDataStructure
that holds and information you need and changed from different forms. Just to give a simple idea: