未找到 属性、可绑定 属性 或 'MaxLength' 事件,或值与 属性 之间的类型不匹配

No property, bindable property, or event found for 'MaxLength', or mismatching type between value and property

自 Xamarin 2.4(并切换到 .Net Standard 而不是 PCL)以来,我通过使用自己的行为得到以下错误(XAMLC 是:

No property, bindable property, or event found for 'MaxLength', or mismatching type between value and property.

下面是实现(非常简单):

using Xamarin.Forms;

namespace com.rsag.xflib.Behaviors
{
    /// <summary>
    ///     Constrain the number of charachters on entry to the given length
    /// </summary>
    public class MaxLengthEntryBehavior : Behavior<Entry>
    {
        /// <summary>
        ///     Value to prevent constraint
        /// </summary>
        public const int NOT_CONSTRAINED = 0;

        /// <summary>
        ///     Bindable property for <see cref="MaxLength" />
        /// </summary>
        public static readonly BindableProperty MaxLengthProperty = BindableProperty.Create(nameof(MaxLength),
            typeof(int), typeof(MaxLengthEntryBehavior), NOT_CONSTRAINED, validateValue: ValidateMaxValue);

        /// <summary>
        ///     Max. length for the text (-1: not constrained)
        /// </summary>
        public int MaxLength
        {
            get => (int) GetValue(MaxLengthProperty);
            set => SetValue(MaxLengthProperty, value);
        }

        private static bool ValidateMaxValue(BindableObject bindable, object value)
        {
            if (value is int intValue)
            {
                return intValue >= NOT_CONSTRAINED;
            }

            return false;
        }

        /// <inheritdoc />
        protected override void OnAttachedTo(Entry bindable)
        {
            if (bindable != null)
            {
                bindable.TextChanged += OnTextChanged;
            }
        }

        /// <inheritdoc />
        protected override void OnDetachingFrom(Entry bindable)
        {
            if (bindable != null)
            {
                bindable.TextChanged -= OnTextChanged;
            }
        }

        private void OnTextChanged(object sender, TextChangedEventArgs e)
        {
            if (MaxLength == NOT_CONSTRAINED)
            {
                return;
            }

            if (string.IsNullOrEmpty(e.NewTextValue))
            {
                return;
            }

            var entry = (Entry) sender;

            if (e.NewTextValue.Length > MaxLength)
            {
                entry.Text = e.NewTextValue.Substring(0, MaxLength);
            }
        }
    }
}

App中的用法也很简单:

<Entry Text="{Binding ServerPort.Value Keyboard="Numeric">
    <Entry.Behaviors>
        <libBehav:MaxLengthEntryBehavior MaxLength="{x:Static ac:Constants.MAX_PORT_LENGTH}" />
    </Entry.Behaviors>
</Entry>

此编译适用于文字 MaxLength="10" 和绑定 MaxLength="{StaticResource MyValue}",但不适用于静态 class 中的值。我需要 XAML 和一些 C# 代码中的值,所以我想使用 Constants class.

静态class中的值定义如下:

public const int MAX_PORT_LENGTH = 5;

编辑 2018-01-09

问题似乎出在内部 classes 的使用上。以下作品:

MaxLength="{x:Static ac:Constants.MAX_PORT_LENGTH}"

但不是这个:

MaxLength="{x:Static ac:Constants.ServerConstraints.MAX_PORT_LENGTH}"

我今天遇到了类似的问题,结果发现我的 XAML 中缺少“}”。看起来您在此行中缺少“}”:

<Entry Text="{Binding ServerPort.Value Keyboard="Numeric">
                                      ^-- here

终于找到解决方法

在以前的版本中(我认为静态 setter 没有被遵守,但在运行时被解释)语法是 . 访问内部 类:

MaxLength="{x:Static ac:Constants.ServerConstraints.MAX_PORT_LENGTH}"

在 Xamarin.Forsm 的较新版本中,我必须编写 + 来表示内部 类.

MaxLength="{x:Static ac:Constants+ServerConstraints.MAX_PORT_LENGTH}"