c# skype4com how to write a status near my online icon?
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 chan开发者_如何学运维ge from online to offine or invisible mode. But what about adding a message to the status? Thx folks
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!";
}
}
}
精彩评论