如何在 Xbox 上为我的 UWP 应用程序实施反馈逻辑?
How I can implement feedback logic for my UWP app on Xbox?
我想像 PC 上的反馈中心一样为 Xbox 实现反馈逻辑。但是我无法在 Xbox 上使用反馈中心。
Feedback Hub is available only on devices that run version 10.0.14271
or later of a Windows 10 OS that is based on the desktop and mobile
device families. We recommend that you show a feedback control in your
app only if the Feedback Hub is available on the user's device. The
code in this topic demonstrates how to do this.
https://docs.microsoft.com/en-us/windows/uwp/monetize/launch-feedback-hub-from-your-app
How I can implement feedback logic for my UWP app on Xbox?
来自官方document,Feedback Hub 不支持Xbox,如果您想为您的应用发送反馈,一般情况下,您可以启动带有反馈邮件行的邮件应用并询问用户post 问题。
另一种方法是在您的应用中制作自定义反馈 ui,例如标题文本框、描述文本框和附加文件列表。然后 post this to the your own server with httpclient.
我想像 PC 上的反馈中心一样为 Xbox 实现反馈逻辑。但是我无法在 Xbox 上使用反馈中心。
Feedback Hub is available only on devices that run version 10.0.14271 or later of a Windows 10 OS that is based on the desktop and mobile device families. We recommend that you show a feedback control in your app only if the Feedback Hub is available on the user's device. The code in this topic demonstrates how to do this.
https://docs.microsoft.com/en-us/windows/uwp/monetize/launch-feedback-hub-from-your-app
How I can implement feedback logic for my UWP app on Xbox?
来自官方document,Feedback Hub 不支持Xbox,如果您想为您的应用发送反馈,一般情况下,您可以启动带有反馈邮件行的邮件应用并询问用户post 问题。
另一种方法是在您的应用中制作自定义反馈 ui,例如标题文本框、描述文本框和附加文件列表。然后 post this to the your own server with httpclient.