欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

WPF xmlns是什么意思(通过xmlns引入资源包)

程序员文章站 2022-06-18 15:59:42
xmlns=xml namespace 导入命名空间,相当于c#中的usingxmlns有几种不同的形式xmlns为url网址一般是大公司,url固定xmlns="http://schemas.mic...

xmlns=xml namespace 导入命名空间,相当于c#中的using
xmlns有几种不同的形式

xmlns为url网址

一般是大公司,url固定

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为命名空间的引用

(1)在同一程序集

xmlns:local="clr-namespace:wpfdemo.datacontextanditemsource"

(2)不在同一程序集
需要表明是哪个程序集(assembly)

xmlns:sys="clr-namespace:system;assembly=mscorlib"

xmlns为第三方控件,根据文档来

 
WPF xmlns是什么意思(通过xmlns引入资源包)