Suppose I have a ListView and TextBox and they are located
in different containers in the same Window.
Selecting items in the listview I want the TextBox Text property to be updated
in accordance with the listview data bound selected item.
Is it possible in XAML?
Sure… Check this out
You can bind to SelectedItem. In this case, I’m cheating, because I know it’s a TextBlock, but in the real world you’ll have to write a DataTemplate (most likely).