Windows 通用应用程序中的 2D 图形

2D Graphic in Windows Universal App

我正在考虑我即将开展的学校项目,重点是 Windows 10 个通用应用程序,我 运行 进行了非常有趣的实验: https://www.chromeexperiments.com/experiment/stochasticity

我想在用 Csharp 编写的 Metro 通用应用程序中做一些非常相似的事情或达到相似的动画水平。在编写 WUA 时,我从未使用过任何类型的动画或 2d 图形。

有人可以指导我以正确的方式开始吗?您的建议是什么,这是否可能...任何特定的示例代码?

谢谢。

对于 2D 光栅图形,请查看 Win2d. Win2d is a Windows Runtime wrapper over Direct2D and enables high performance 2d rendering similar to what your experiment does with the HTML Canvas. The CanvasAnimatedControl 专为我认为您正在寻找的场景而设计。

请参阅 GitHub 上的 introduction and quick start 以开始使用并获取更多示例。