setting up a simple component with data binding
问题 I am trying to set up a component with data binding. This is basically a seperate content view that would have a property Item of type Item and supports binding. The following is the definition for the binding: public static readonly BindableProperty ItemProperty = BindableProperty.Create( nameof(Item), typeof(Item), typeof(ItemComponent), null, defaultBindingMode: BindingMode.TwoWay, propertyChanged: ItemPropertyChanged); private readonly ItemComponentViewModel vm; static void