xmlns=xml namespace 導(dǎo)入命名空間蹦哼,相當(dāng)于C#中的using
xmlns有幾種不同的形式
xmlns為url網(wǎng)址
一般是大公司镜会,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)不在同一程序集
需要表明是哪個(gè)程序集(assembly)
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns為第三方控件,根據(jù)文檔來
5