我想要实现一些贬低的东西。我已经在这里阅读了有关xaml的条件编译的其他一些文章,但它们并不是我所追求的。我正在寻找的是不同条件符号的不同命名空间。非常感谢您提前提供任何帮助。
<Window x:Class="Wpf.Test"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
#if TEST
xmlns:CO="clr-namespace:Wpf.TestA;assembly=Wpf.TestA"
#else
xmlns:CO="clr-namespace:Wpf.TestB;assembly=Wpf.TestB"
#endif
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006">