admin管理员组

文章数量:1345075

In my maui project, I have several bindings like this:

<Label
    Text={Binding BindingContext.Title, x:DataType=local:MyView, Source={RelativeSource Mode=FindAncestor, AncestorType={x:Type ContentPage}}} >
</Label>

The label is bound to the containing ContentPage. However, this results in error 'Binding: Property "Title" not found on "System.Object"'. The BindingContext in reality is the ViewModel which contains Title property. How could I specify the correct type of BindingContext to the binding?

In my maui project, I have several bindings like this:

<Label
    Text={Binding BindingContext.Title, x:DataType=local:MyView, Source={RelativeSource Mode=FindAncestor, AncestorType={x:Type ContentPage}}} >
</Label>

The label is bound to the containing ContentPage. However, this results in error 'Binding: Property "Title" not found on "System.Object"'. The BindingContext in reality is the ViewModel which contains Title property. How could I specify the correct type of BindingContext to the binding?

Share Improve this question asked yesterday weksowekso 852 silver badges13 bronze badges
Add a comment  | 

3 Answers 3

Reset to default 0

you should be able to do something like this

<ContentPage x:DataType="local:MyView" >
...
    <Label Text="{Binding Title}" />
...
</ContentPage>

Check the below code:

MyPage.xaml

<Label Text="{Binding Title}"/>

MyPage.xaml.cs

public partial class MyPage : ContentPage
{
    public MyPage()
    {
        InitializeComponent();
        BindingContext = new YourViewModel();

    }
}

YourViewModel.cs

public partial class YourViewModel: ObservableObject
{
 
    [ObservableProperty]
    bool isLoading;
}

Also i have a repository you may check as a sample

https://github/imoulas/sample-maui-net-expense-app

hope that helps

Because your Source is a ContentType, then, your x:DataType should also be ContentPage, right?

<Label
    Text={Binding Title,
                  x:DataType=ContentPage,
                  Source={RelativeSource Mode=FindAncestor, AncestorType={x:Type ContentPage}}} >
</Label>

本文标签: cUse the correct type of BindingContext in xamlStack Overflow