我使用Bot Framework SDK为Cortana创建了一个技能,它工作得很完美,唯一的问题是Cortana不会大声朗读我的提示,这意味着用户需要自己阅读它们。到目前为止,我还没有找到任何关于这方面的信息,有谁知道是否可以让Cortana阅读提示以及我需要做什么?
发布于 2018-06-02 07:14:38
你需要多写几行代码来实现这一点!
Activity reply = activity.CreateReply("This is the text that Cortana displays.");
reply.Speak = "This is the text that Cortana will say.";您可以查看文档here
https://stackoverflow.com/questions/50645985
复制相似问题