如何在Xamarin Forms中创建基于自定义URL的xaml命名空间(xmlns)?

时间:2015-10-14 10:08:40

标签: c# forms xaml xamarin xamarin.forms

是否可以在xamarin表单中创建基于自定义URL的命名空间,以便我可以使用xmlns:lib="http://schemas.officename.com/component/2015/xaml"代替clr名称空间,如xmlns:lib="clr-namespace:Forms.Library.ontrols;assembly=Forms.Library"

就像这里的例子

http://www.codeproject.com/Articles/111911/A-Guide-to-Cleaner-XAML-with-Custom-Namespaces-and

http://www.kunal-chowdhury.com/2013/05/how-to-create-custom-xmlns-namespaces.html

我尝试导入

using System.Windows.Markup;

在AssemblyInfo.cs中

,但未找到 XmlnsDefinition XmlnsPrefix 不存在。

我是否需要导入任何特定的dll或未在Xamarin Forms中实现的那些?

1 个答案:

答案 0 :(得分:1)

我不相信XAML的Xamarin.Forms实现(目前)支持这种方法。