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 badges3 Answers
Reset to default 0you 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
版权声明:本文标题:c# - Use the correct type of BindingContext in xaml - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743775692a2536933.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论