Xamarin.Forms.Xaml.XamlParseException:找不到MarkupExtension

时间:2014-10-30 15:59:35

标签: c# xaml xamarin.forms markup-extensions

我正在尝试使用带有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:Translate。我很困惑,为什么它没有找到标记扩展,因为我看到的所有示例似乎都以相同的方式完成。有人知道为什么会这样吗?我总是在寻找Xamarin表格的好例子时遇到很多麻烦。

1 个答案:

答案 0 :(得分:4)

程序集名称错误。我正在使用Xamarin表单的共享项目,并将共享项目的名称作为程序集的名称。因此,如果您有共享项目,则程序集的名称必须是使用共享项目的程序集。