xamarin/Xamarin.Forms

[Bug] Compiled bindings to work when also Binding the BindingContext in XAML

Offen

#7.698 geöffnet am 26.09.2019

 (2 Kommentare) (0 Reaktionen) (1 zugewiesene Person)C# (1.926 Forks)batch import
a/Xaml </>a/binding ⛓e/5 :clock5:help wantedt/bug :bug:up-for-grabs

Repository-Metriken

Stars
 (5.644 Sterne)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

Summary

Not sure if this a bug or a feature request.

When setting the BindingContext in XAML there is then no way to use compiled bindings.

For example

<custom:MyCustomView x:DataType="{x:Null}" BindingContext="{Binding PresenterViewModel}" IsVisible="{Binding IsVisible}" >
       <Label Text="{Binding Text}"/>
</custom:MyCustomView>

In the above code the datatype can only be Null

If you set it to any object, the two properties will conflict and say that either PresenterViewModel or IsVisible does not exist.

The bottom line is when ever you set BindingContext in Xaml, there is then no way to set DataType correctly

Contributor Guide