我正在尝试将自定义标记扩展与 Xamarin 表单一起使用,以便最终实现本地化。我正在尝试深入了解 Xamarin 表单示例。
这是一段使用扩展的 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"
xmlns:local="clr-namespace:CRI.MAP.Mobile.Views;assembly=CRI.MAP.Mobile"
x:Class="CRI.MAP.Mobile.Views.CustomerSearchPage">
<StackLayout>
<Button
Text="{local:Translate Clear}"
Command="{Binding ClearCommand}" />
</StackLayout>
这是翻译扩展标记的代码:
using System;
using Xamarin.Forms.Xaml;
using Xamarin.Forms;
using System.Diagnostics;
namespace CRI.MAP.Mobile.Views
{
// You exclude the 'Extension' suffix when using in Xaml markup
[ContentProperty ("Text")]
public class TranslateExtension : IMarkupExtension
{
public string Text { get; set; }
public object ProvideValue (IServiceProvider serviceProvider)
{
//if (Text == null)
// return null;
//Debug.WriteLine ("Provide: " + Text);
// Do your translation lookup here, using whatever method you require
//var translated = L10n.Localize (Text);
//return translated;
return "hello";
}
}
}
我注释掉了一些代码,以防万一这是问题的原因。
每当我尝试运行它时,我都会收到错误消息:Xamarin.Forms.Xaml.XamlParseException: MarkupExtension not found for local:Translate。我很困惑为什么它没有找到标记扩展,因为我看到的所有示例似乎都是以相同的方式完成的。有人知道为什么会这样吗?一般来说,我在寻找 Xamarin 表单的好例子时遇到了很多麻烦。