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 
{ 
... 
}

Deixe um comentário

O seu endereço de e-mail não será publicado. Campos obrigatórios são marcados com *