我没有收到任何错误,并且该属性实际上改变了我的心情文本(在允许我的应用访问 Skype 之后),但它不使用 RTF,它只是将我的心情文本设置为{\i Test}
而不是Test
. 我已经尝试创建一个FlowDocument
并将其内容转换为 RTF,但这也不起作用。
using SKYPE4COMLib; // Reference to Skype4COM.dll
using System;
using System.Runtime.InteropServices;
public static class Program {
public static void Main () {
Skype skype = new Skype();
skype.CurrentUserProfile.RichMoodText = "{\\i Test}";
}
}
有人知道如何让 Skype 使用 RTF 来处理这种情绪文本(不使用这个丰富的情绪编辑器插件)吗?