是否可以在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;
,但未找到 XmlnsDefinition 且 XmlnsPrefix 不存在。
我是否需要导入任何特定的dll或未在Xamarin Forms中实现的那些?
答案 0 :(得分:1)
我不相信XAML的Xamarin.Forms实现(目前)支持这种方法。