gpt4 book ai didi

mvvm - Xamarin.Forms 在 XAML 中将父属性与子属性绑定(bind)

转载 作者:行者123 更新时间:2023-12-02 12:17:28 25 4
gpt4 key购买 nike

这个问题我找了两天也没找到答案。我有一个简单的内容页面,带有一个可绑定(bind)属性:

public partial class Page1 : ContentPage
{
public static readonly BindableProperty MainTextProperty = BindableProperty.Create<Page1 , string>(p => p.MainText, string.Empty);

public string MainText
{
get
{
return (string)GetValue(MainTextProperty);
}
set
{
SetValue(MainTextProperty, value);
}
}
}

在 XAML 中,我有以下代码:

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Test.Pages.Page1">
<Grid HorizontalOptions="Fill" VerticalOptions="Fill">
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>

<Label Text="{Binding MainText}" Grid.Row="0"/>
<Label Text="{Binding MainText}" Grid.Row="1"/>
<Label Text="{Binding MainText}" Grid.Row="2"/>
<ctrl:CustomControl CustomProperty="{Binding MainText}" />
<Label Text="{Binding MainText}" Grid.Row="3"/>
</Grid>
</ContentPage>

在自定义控件中,是这样的:

<StackLayout>
<Label x:Name="lbl1" />
</StackLayout>

在后面的代码中,我使用 OnPropertyChanged 来设置 CustomProperty 和 lbl1 之间接收到的值。 CustomProperty 的定义方式与我定义 MainTextProperty 的方式相同。

但是,这不起作用。我寻找任何可以让我做类似事情的例子,但我还没有找到。你们中有人知道我怎样才能完成这样的事情吗?我收到传递的值与 Xamarin.Forms.Binding 之间类型不匹配的问题。

最佳答案

另一种方法是使用 x:Reference。在这种情况下,您不会更新页面的数据上下文。

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="App1.Page1"
x:Name="root">
<Grid HorizontalOptions="Fill" VerticalOptions="Fill">
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>

<Label Text="{Binding MainText}" Grid.Row="0"/>
<Label Text="{Binding MainText}" Grid.Row="1"/>
<Label Text="{Binding MainText}" Grid.Row="2" BindingContext="{x:Reference Name=root}"/>
<Label Text="{Binding MainText}" Grid.Row="3"/>
</Grid>
</ContentPage>

关于mvvm - Xamarin.Forms 在 XAML 中将父属性与子属性绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28916659/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com