MainViewControl.xaml:Edit feature so that I can update a selected person - the Edit button should display a ContentDialog in which I can edit the selected person's FirstName or LastName. This is the command that should create that dialog when the button is pressed:Edit button - when I try writing something like Command="{x:Bind ShowEditPersonDialogCommand}", the compiler doesn't recognize it. That's because the Grid that contains the persons and buttons is located within a DataTemplate, which uses my PersonDTO class.ShowEditPersonDialogCommand to the Edit button.