0

我没有收到任何错误,并且该属性实际上改变了我的心情文本(在允许我的应用访问 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 来处理这种情绪文本(不使用这个丰富的情绪编辑器插件)吗?

4

1 回答 1

2

为什么它不起作用是 Skype 将寻找 HTML 标签而不是 RTF 标签。所以这是你的问题。中可用的 HTML 标签Skype.CurrentUserProfile.RichMoodText

  • <i>Italics</i>
  • <b>Bold</b>
  • <u>Underline</u>
  • <font>Font tags</font>(which includes color and size)
  • <center>Center</center>
  • <blink>Blink</blink>
  • <a href="http://example.org">Linking</a>

这是您的代码的固定版本。

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</i>";
    }
}
于 2015-02-13T21:16:59.243 回答