Xamarin Forms: Compiled Bindings

Using Compiled Bindings improves the speed of Data Binding on Xamarin Forms and better it will detect Data Binding Errors on Compile Time.

The following code example demonstrates enabling XAML compilation at the assembly level:

using Xamarin.Forms.Xaml;
…
[assembly: XamlCompilation (XamlCompilationOptions.Compile)]
namespace PhotoApp
{
…
}

The following code example demonstrates enabling XAML compilation at the class level:

using Xamarin.Forms.Xaml;
 ... 
[XamlCompilation (XamlCompilationOptions.Compile)] 
public class HomePage : ContentPage 
{ 
... 
}

Leave a Reply

Your email address will not be published. Required fields are marked *