There are three modes of XAML bindings exists for either Binding and x:Bind:
OneTime: Update happens only once, on initialization of the view during InitializeComponent() call. (ViewModel[sends data when initializing] -> View)
OneWay: View is updated when ViewModel changes. But not in the rev...