There are four ways we can bind the data to the BindableObject.
Default: When we use the Default Binding mode, it indicated that asOneWaybinding, means, data change propagates from source (ViewModelin this case) toViewelement.OneWay: It reflects the change from source toViewelement as mentioned above. Example:LabelusesOneWaybinding.OneWayToSource: It reflects the changes from target (BindableObject) to source (ViewModel). This is basically used for the readonly Bindable Properties.TwoWay: It reflects the changes between source and target in both directions. Example:Entrygenerally uses theTwoWaybinding.