将 RTF 用于 Skype 的情绪文本

Use RTF for Skype's mood text

我没有收到任何错误,属性 实际上更改了我的心情文本(在允许我的应用访问 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 用于此情绪文本(不使用此 Rich Mood Editor 插件)吗?

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

  • <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>";
    }
}