xmlns =“http:// schemas ...”的意义是什么?是否需要访问Internet?

时间:2013-01-02 13:23:12

标签: wpf xaml namespaces schema xml-namespaces

  

可能重复:
  Without internet connection, how xmlns attribute can work and understand by browser?

使用xmlns="http://schemas..."代替xmlns="clr-namespace:..."是否意味着您需要互联网访问来引用该资源?

1 个答案:

答案 0 :(得分:0)

不,你没有。有关xmlns的说明,请参阅注释中引用的帖子。除此之外:如果您有一个.Net组件并希望使用此命名空间语法使其可用于XAML,您可以通过在定义命名空间的位置设置此属性来实现此目的:

<Assembly: System.Windows.Markup.XmlnsDefinition("http://wpfglue.wordpress.com/commanding", "WPFGlue.Commanding")> 
<Assembly: System.Windows.Markup.XmlnsPrefix("http://wpfglue.wordpress.com/commanding", "c")> 

Namespace Commanding
    ...