簡體   English   中英

從視圖設置時自定義控件可綁定屬性未命中

[英]Custom control bindable Property not getting hit when set from a view

我創建了一個控件,它有一個可綁定的屬性,但是當我嘗試設置它的值時,它沒有設置,當我檢查它的設置器時,它在調試時沒有被命中,不確定我做錯了什么。

public decimal MetricValue
        {
            get => (decimal)GetValue(MetricValueProperty);
            set => SetValue(MetricValueProperty, value);
        }

        public static readonly BindableProperty MetricValueProperty =
            BindableProperty.Create(
                propertyName: nameof(MetricValue),
                returnType: typeof(decimal),
                declaringType: typeof(HeightSelection),
                defaultBindingMode: BindingMode.TwoWay,
                propertyChanged: MetricValuePropertyChanged);

我也有一個 propertychanged,它沒有被提升

 <controls:customControl
                                        CurrentSystemOfMeasure="{Binding CurrentSystemOfMeasure}"
                                        MetricValue="{Binding CurrentHeight}"
                                        TextAlignment="Start"
                                        OnHeightSelectedCommand="{Binding HeightSelectionCommand}"
                                        IsValid="True" />

任何輸入都會有所幫助

您是否在 xaml 視圖中設置了上下文?

這是我的方式:

 public static readonly BindableProperty CancelButtonVisibleAvailableProperty = BindableProperty.Create(
        propertyName: "CancelButtonVisible",
        returnType: typeof(bool),
        declaringType: typeof(SelphiDetailPhotosView),
        defaultValue: true);

    public bool CancelButtonVisible
    {
        get { return (bool)GetValue(CancelButtonVisibleAvailableProperty); }
        set { SetValue(CancelButtonVisibleAvailableProperty, value); }
    }

ContentView 需要 ax:name 在屬性 IsVisible 中設置上下文在您的情況下,您需要在 label 的 Text 屬性中設置上下文以顯示十進制值

我已經設置了引用我的自定義視圖selphiDetailPhotosView的上下文

   <Button IsVisible="{Binding Source={x:Reference selphiDetailPhotosView}, Path=CancelButtonVisible}"
                        Margin="27,0,27,18"
                        BackgroundColor="{StaticResource PlatinumColor}"
                        Command="{Binding CancelCommand}"
                        Text="Cancelar"
                        TextColor="White"
                        TextTransform="None" />



<ContentView
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="confia.Views.Views.OnBoardingAndLivenessSharedViews.SelphiDetailPhotosView"
   xmlns:svg="clr-namespace:FFImageLoading.Svg.Forms;assembly=FFImageLoading.Svg.Forms"
xmlns:transformation="clr-namespace:FFImageLoading.Transformations;assembly=FFImageLoading.Transformations"
xmlns:views="clr-namespace:confia.Views.Views"
  xmlns:converters="clr-namespace:confia.Views.Converters"
x:Name="selphiDetailPhotosView"
>

最后在您的 ContentPage 中調用您的自定義控件並與您的 ViewModel 綁定

<customControl:SelphiDetailPhotosView CancelButtonVisible="{Binding CanCancel}"/>

我已經復制了你的場景,這對我有用。

CodeBehind 自定義控件

 public partial class CustomControl : ContentView
{
    public CustomControl()
    {
        InitializeComponent();
    }

    public static readonly BindableProperty MetricValueProperty = BindableProperty.Create(
       propertyName: nameof(MetricValue),
       returnType: typeof(decimal),
       declaringType: typeof(CustomControl),
       defaultBindingMode: BindingMode.TwoWay,
       defaultValue: 0m);

    public decimal MetricValue
    {
        get { return (decimal)this.GetValue(MetricValueProperty); }
        set { this.SetValue(MetricValueProperty, value); }
    }
}

CustomControl Xaml

<ContentView
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ferreplace.Views.Controls.CustomControl"
x:Name="this"
>
<ContentView.Content>
    <StackLayout HorizontalOptions="CenterAndExpand" >
        <Label Text="Metric Value" FontSize="40"/>
        <Label FontSize="20" Text="{Binding Source={x:Reference  this}, Path=MetricValue}" ></Label>
    </StackLayout>
</ContentView.Content>

ContentPage 調用自定義控件

<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:controls="clr-namespace:ferreplace.Views.Controls"
             x:Class="ferreplace.MainPage">
 <StackLayout>
      <controls:CustomControl MetricValue="{Binding MetricValueBinding}"/>
    </StackLayout>
</ContentPage>

視圖模型

 public class MainPageViewModel: BindableBase, IInitializeAsync
{

    private decimal _metricValueBinding;
    public decimal MetricValueBinding
    {
        get
        {
            return _metricValueBinding;
        }
        set
        {
            SetProperty(ref _metricValueBinding, value);
        }
    }

    public MainPageViewModel()
    {
    }

    public async Task InitializeAsync(INavigationParameters parameters)
    {
        MetricValueBinding = 30m;
    }
}

十進制綁定結果也許您在可綁定屬性創建中忘記了默認值

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM