Hello, someone can suggest how I can do it?
I have a public static int _index in App.xaml.cs
I have a List < List < Person > >
foreach List < Person > I create a new button
-> foreach button, the click.event of it opens a PopUp.
Now I want to bind the Textboxes of the PopUp to the person-propertys
For example:
PopUp of Button 1 should bound to List[1][_index]
PopUp of Button 2 should bound to List[2][_index]
AND:
if the _index is changed, the content of the Textboxes should change too.
Thanks