在WPF项目中.xaml文件中引用命名空间有如下方式
1 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
2 xmlns:local="clr-namespace:xxxxxx"
using System.Windows; using System.Windows.Markup; [assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)] [assembly: XmlnsDefinition("http://assembly.test.com", "Project.Assembly")]
1 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 2 3 // 引用自定义命名程序集命名空间 4 xmlns:assembly="http://assembly.test.com"
原文:https://www.cnblogs.com/pangzishuoma/p/15026273.html