Windows Store游戏:用于游戏的DirectX和用于丰富UI的XAML

时间:2012-12-11 17:43:37

标签: performance xaml windows-8 directx windows-store-apps

在DirectX Windows Store游戏中使用XAML构建矢量(可伸缩)丰富的UI(包含按钮,列表框等表单)是否可以?

1 个答案:

答案 0 :(得分:1)

是的,您可以在Windows应用商店应用中一起使用XAML和DirectX。这篇文章解释了DirectX and XAML interopanother article from the Windows 8 app developer blog

总之,您的选择是:

  1. 您可以使用SurfaceImageSource XAML类型将DirectX内容区域添加到Metro风格的XAML应用。
  2. 您可以将VirtualSurfaceImageSource用于大型DirectX内容+ XAML UI。
  3. 您可以将SwapChainBackgroundPanel用于带有XAML叠加层的DirectX。