2013-02-20 31 views

回答

1

执行命令的详细信息请尝试使用command

var cmd = new SKYPE4COMLib.Command(); 
cmd.Command = string.Format("GET USER {0} AVATAR 1 {1}", userHandle, rootedPathFileName); 
var skype = new SKYPE4COMLib.Skype(); 
skype.SendCommand(cmd); 

欲了解更多信息,请参阅this link

+0

感谢您的帮助...您发布的链接帮助我...... :-) – Sudix 2013-02-27 10:32:37

1

对于个人资料图片添加网址或按钮单击并将用户名放在文本框其simpel .. !!

profilePictureUrl = "http://api.skype.com/users/" 
         + textBox2.Text + "/profile/avatar"; 
pictureBox1.ImageLocation = profilePictureUrl; 
相关问题