You are currently creating your own ContentView in Xamarin.Forms and are wondering how to create properties that can then be bound?
Easy going, the keyword is: BindableProperty.
Xamarin
OS native functions in Xamarin.Forms
Xamarin.Forms already offers a certain set of cross-platform implemented functions. These are already included in the framework and can be used “out of box”. However, there are certain functionalities which are not accessible without custom programming.
The Xamarin framework offers a wonderful functionallity here to “pick up” such self-written methods from the right platform. The keyword is DependencyService.
Continue reading…