2010-12-01 88 views
0

在WPF和Silverlight使用XAML时,它将具有在XAML文件意义和xmlns =“定义”

xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
    xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions" 
    xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" 

但对begginning要声明,我在哪里可以找到什么每个条目意味着?据我知道它们类似于在C#中使用或VB中的导入,但类或“命名空间”的定义在哪里?

非常感谢!

+1

`xmlns = ...`是**名称空间声明**。请参阅XML命名空间:http://en.wikipedia.org/wiki/XML_namespace – FrustratedWithFormsDesigner 2010-12-01 18:49:43

回答