1

generic.xaml 的主要问题是 Viewbox 已移动程序集。

我如何拥有一个 generic.xaml 文件,其中包含将在 SL3 和 SL4 中编译的 Viewbox 位置的命名空间?

我查看了http://www.removingalldoubt.com/PermaLink.aspx/defa2a7d-b1e9-49eb-b8c8-438348be8d18但无济于事......

注意:您可以在 Assembly.cs 中放置两个属性 XmlnsPrefix 和 XmlnsDefinition。

提前致谢。

4

1 回答 1

0

最后放弃了 XmlnsDefinition 和 XmlnsPrefix,因为我无法让它们正常工作......在 WPF 应用程序中很有趣,设计器窗口可以解析引用,但编译器不能......去图。

我使用博客中的 cpp 预处理器解决了... http://blogs.msdn.com/b/blemmon/archive/2009/04/29/using-the-preprocessor-to-share-incompatible-xaml-between-sl -and-wpf-part-1.aspx

我修改了 PreprocessXaml 以仅修改 generic.xaml。

 <Target Name="PreprocessXaml">
<ItemGroup>
  <!-- Convert the DefineConstants property into an ItemGroup -->
  <XamlConstants Include="$(DefineConstants)" />
</ItemGroup>
<PropertyGroup>
  <!-- Convert the XamlConstants ItemGroup into a list command line switches for CL.exe -->
  <CommandLineDefineConstants>@(XamlConstants->'/D%(Identity)',' ')</CommandLineDefineConstants>
</PropertyGroup>
<!-- Run the preprocessor -->
<Exec Command="CL.exe /nologo /EP $(CommandLineDefineConstants) &quot;Themes/generic.i.xaml&quot; &gt; Themes/generic.xaml" />
<!-- Replace the pages with the preprocessed pages so that subsequent targets will use the preprocessed files -->

于 2011-07-25T04:22:36.000 回答