如何将 属性 绑定到 MAUI 中的视图模型?
How can I bind a property to a view model in MAUI?
我正在尝试将 属性 绑定到视图模型。
我收到以下错误:
Error XFC0009 No property, BindableProperty, or event found for "ViewModel", or mismatching type between value and property.
public abstract class BaseTestView : ContentView
{
public BaseVm ViewModel
{
get => (BaseVm)GetValue(ViewModelProperty);
set => SetValue(ViewModelProperty, BindingContext = value);
}
public static BindableProperty ViewModelProperty { get; set; } = BindableProperty.Create(nameof(ViewModel), typeof(BaseVm), typeof(BaseTestView));
}
<v:BaseTestView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:vm="clr-namespace:MyProject.ViewModels"
xmlns:v="clr-namespace:MyProject.Views"
x:Class="MyProject.Views.ChildTestView"
x:DataType="vm:ChildTestVm">
<v:BaseTestView.Content>
<StackLayout>
<Label Text="{Binding Foo}" />
</StackLayout>
</v:BaseTestView.Content>
</v:BaseTestView>
public partial class ChildTestView : BaseTestView
{
public ChildTestView() : base()
{
InitializeComponent();
}
}
public class ChildTestVm : BaseVm
{
public string Foo { get; set; }
public ChildTestVm()
{
Title = "Test";
Foo = "some stuff";
}
}
public class HomeVm : BaseVm
{
public ChildTestVm Tested { get; set; }
}
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:vm="clr-namespace:MyProject.ViewModels"
xmlns:v="clr-namespace:MyProject.Views"
x:Class="MyProject.Pages.HomePage"
x:DataType="HomeVm">
<ContentPage.Content>
<StackLayout>
<v:ChildTestView ViewModel="{Binding Tested}" />
<!-- ^ Error here /-->
</StackLayout>
</ContentPage.Content>
</ContentPage>
public partial class HomePage : ContentPage
{
}
知道这个错误是什么意思以及如何修复它吗?
我尝试了一些实验,但未能弄清楚为什么会出现这种抱怨 - 我尝试的每个变体也出现了这种错误。
相反,这样做:
首先,设置ChildTestView的BindingContext
:
<v:ChildTestView BindingContext="{Binding Tested}" />
将 ChildTestView 数据绑定到 Tested 中的 ChildTestVm。
如果您还需要访问 Vm 以获取隐藏代码,请按以下方式进行:
ChildTestView.xaml.cs:
private ChildTestVm ViewModel => (ChildTestVm)BindingContext;
现在在ChildTestView的方法中,可以使用ViewModel.Foo
.
注意:如果您动态更改Tested
:
如果您的代码在主页加载并可见后执行 Tested = ...
,那么要使其正常工作需要 Tested
setter 执行 OnPropertyChanged();
(或其他MVVM 数据绑定机制)。这是通知 XAML 更改所必需的。
我正在尝试将 属性 绑定到视图模型。
我收到以下错误:
Error XFC0009 No property, BindableProperty, or event found for "ViewModel", or mismatching type between value and property.
public abstract class BaseTestView : ContentView
{
public BaseVm ViewModel
{
get => (BaseVm)GetValue(ViewModelProperty);
set => SetValue(ViewModelProperty, BindingContext = value);
}
public static BindableProperty ViewModelProperty { get; set; } = BindableProperty.Create(nameof(ViewModel), typeof(BaseVm), typeof(BaseTestView));
}
<v:BaseTestView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:vm="clr-namespace:MyProject.ViewModels"
xmlns:v="clr-namespace:MyProject.Views"
x:Class="MyProject.Views.ChildTestView"
x:DataType="vm:ChildTestVm">
<v:BaseTestView.Content>
<StackLayout>
<Label Text="{Binding Foo}" />
</StackLayout>
</v:BaseTestView.Content>
</v:BaseTestView>
public partial class ChildTestView : BaseTestView
{
public ChildTestView() : base()
{
InitializeComponent();
}
}
public class ChildTestVm : BaseVm
{
public string Foo { get; set; }
public ChildTestVm()
{
Title = "Test";
Foo = "some stuff";
}
}
public class HomeVm : BaseVm
{
public ChildTestVm Tested { get; set; }
}
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:vm="clr-namespace:MyProject.ViewModels"
xmlns:v="clr-namespace:MyProject.Views"
x:Class="MyProject.Pages.HomePage"
x:DataType="HomeVm">
<ContentPage.Content>
<StackLayout>
<v:ChildTestView ViewModel="{Binding Tested}" />
<!-- ^ Error here /-->
</StackLayout>
</ContentPage.Content>
</ContentPage>
public partial class HomePage : ContentPage
{
}
知道这个错误是什么意思以及如何修复它吗?
我尝试了一些实验,但未能弄清楚为什么会出现这种抱怨 - 我尝试的每个变体也出现了这种错误。
相反,这样做:
首先,设置ChildTestView的BindingContext
:
<v:ChildTestView BindingContext="{Binding Tested}" />
将 ChildTestView 数据绑定到 Tested 中的 ChildTestVm。
如果您还需要访问 Vm 以获取隐藏代码,请按以下方式进行:
ChildTestView.xaml.cs:
private ChildTestVm ViewModel => (ChildTestVm)BindingContext;
现在在ChildTestView的方法中,可以使用ViewModel.Foo
.
注意:如果您动态更改Tested
:
如果您的代码在主页加载并可见后执行 Tested = ...
,那么要使其正常工作需要 Tested
setter 执行 OnPropertyChanged();
(或其他MVVM 数据绑定机制)。这是通知 XAML 更改所必需的。