Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是否可以在图片框控件中显示我的个人资料图片以及我的朋友的个人资料图片?我正在使用 c# 和 SKYPE4COM。有什么建议么..
尝试使用命令:
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);
有关详细信息,请参阅此链接。
对于个人资料图片添加 url 或按钮单击并将用户名放在文本框中其简单..!!
profilePictureUrl = "http://api.skype.com/users/" + textBox2.Text + "/profile/avatar"; pictureBox1.ImageLocation = profilePictureUrl;
查看GET USER AVATAR 命令,它允许您保存图像。
然后,您可以将图片框指向图像文件。
可以在此处找到有关如何使用 Skype4COM 执行命令的信息