【发布时间】:2017-01-01 20:41:52
【问题描述】:
如何在 UWP 应用中更改 AudioGraph 节点的间距?
我正在尝试将应用程序从 WP7 移植到 uwp(Windows 10、Mobile)。 在我的 WP7 应用程序中,我使用代码:
SoundEffect soundEffect = //...(load sound effect).
SoundEffectInstance soundInstance = soundEffect.CreateInstance();
soundInstance.Pitch = pitch;
如何在 UWP 中使用AudioGraph?
【问题讨论】:
标签: c# audio uwp soundeffect