3

在我的项目中,我有一个在 WP7 和 WP8 客户端之间共享的库。该库包含视图、视图模型和其他有趣的数据。

我还想使用最新版本的 Windows Phone Toolkit。

我遇到的问题是,虽然我的 xaml 代码兼容,但出现运行时错误,因为 LongListSelector 存在于 Windows Phone Toolkit for wp7 和 WP8 框架代码的不同程序集中。

在 wp7 中:

xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"

在 wp8 中:

xmlns:controls="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"

如何在不需要为两个平台复制我的 xamls 的情况下解决这个难题?

4

1 回答 1

0

毕竟这是我决定实施的解决方案:

  1. 我认为包含 WP7 和 WP8 的所有视图的库不适合放置在各个平台上实际上不同的视图。所以我创建了两个有问题的视图副本,并将它们放在各自的 WP7 和 WP8 应用程序项目中。

  2. 这在 xaml 中造成了一些重复 - 幸运的是,我的 xaml 不是很复杂 - 只是一些控件,样式。所以我为每个页面创建了一个样式字典,并放在 WP7 项目中的页面旁边。

  3. 我将字典文件链接到 WP8 项目中。我对文件背后的代码做了同样的事情。

  4. 在我的 xaml 文件中,我将本地字典文件与这些页面上使用的样式链接起来:

  5. 通过这个解决方案,我实现了最少的代码重复,所有样式仍然在一个地方,唯一不同的代码 (XAML) 放在它真正属于的地方。

最终的文件夹树如下所示:

Solution
|-- Common Library
|    |-- Views 
|         |-- Page1
+-- WP7
    |-- Views
      |-- Page1
          |-- Page1.xaml  (Windows 7 specific markup)
          |-- Page1.xaml.cs (code behind file)
          |-- Page1.styles.xaml (common styles shared between wp7 and wp8 apps)
+-- WP8
|-- Views
      |-- Page1
          |-- Page1.xaml  (Windows 8 specific markup)
          |-- ->Page1.xaml.cs (linked from the WP7 project)
          |-- ->Page1.styles.xaml (linked from the WP7 project)
于 2013-08-30T09:18:15.160 回答