c#skype4com如何在我的在线图标附近写一个状态?(c# skype4com how to write a status near my online icon?)

我正在使用skype4com dll。 有没有办法可以改变我的状态(我的意思是我想添加一个链接,或写一个状态)使用skype4com? 我怎样才能做到这一点? 我知道TUserStatus可以帮助您从在线更改为offine或invisible模式。 但是如何在状态中添加消息呢? 大家好

I am using skype4com dll. Is there a way I can change my status (i mean i would like to add a link,or write a status) using skype4com? How can I do that? I know TUserStatus can help you to change from online to offine or invisible mode. But what about adding a message to the status? Thx folks

最满意答案

它被称为MoodText,位于Profile界面上。

using SKYPE4COMLib; namespace SO5673842 { class Program { static void Main() { var skype = new Skype(); skype.CurrentUserProfile.MoodText = "Hello!"; } } }

It's called MoodText and is located on the Profile interface.

using SKYPE4COMLib; namespace SO5673842 { class Program { static void Main() { var skype = new Skype(); skype.CurrentUserProfile.MoodText = "Hello!"; } } }c#skype4com如何在我的在线图标附近写一个状态?(c# skype4com how to write a status near my online icon?)

我正在使用skype4com dll。 有没有办法可以改变我的状态(我的意思是我想添加一个链接,或写一个状态)使用skype4com? 我怎样才能做到这一点? 我知道TUserStatus可以帮助您从在线更改为offine或invisible模式。 但是如何在状态中添加消息呢? 大家好

I am using skype4com dll. Is there a way I can change my status (i mean i would like to add a link,or write a status) using skype4com? How can I do that? I know TUserStatus can help you to change from online to offine or invisible mode. But what about adding a message to the status? Thx folks

最满意答案

它被称为MoodText,位于Profile界面上。

using SKYPE4COMLib; namespace SO5673842 { class Program { static void Main() { var skype = new Skype(); skype.CurrentUserProfile.MoodText = "Hello!"; } } }

It's called MoodText and is located on the Profile interface.

using SKYPE4COMLib; namespace SO5673842 { class Program { static void Main() { var skype = new Skype(); skype.CurrentUserProfile.MoodText = "Hello!"; } } }