如何在C#中包含Skype屏幕共享? [英] How can I include Skype Screen Sharing in C#?

查看:116
本文介绍了如何在C#中包含Skype屏幕共享?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

up vote-1down votefavorite









我是使用SKYPE4COMLib开发一个C#应用程序,它可以正常处理呼叫/短信。



我想在我的应用程序中添加屏幕共享功能,但我不确定怎么做有人可以帮帮我吗?



我的代码:

up vote-1down votefavorite




I am developing a C# application using SKYPE4COMLib and it is working fine for Call/Text messages.

I would like to add the screen sharing functionality to my application, but I am unsure how to do so. Can someone help me please?

My Code:

private void Form1_Load(object sender, EventArgs e)
{
    skype = new Skype();
    // Use skype protocol version 7 
    skype.Attach(7, false); 

    skype.PlaceCall("Will", "", "", "");
    skype.CallStatus +=new _ISkypeEvents_CallStatusEventHandler(skype_CallStatus);
}

void skype_CallStatus(Call pCall, TCallStatus Status)
{
    if (Status == TCallStatus.clsRinging)
    {
        skype.SendMessage("Will", "screenbounds(200,300)");
    }
}

推荐答案

我认为 this [ ^ ]文章可以帮到你。



似乎屏幕共享不是由API提供,但文章显示了一个可能的解决方案,虽然我不确定它是否适合您的需求。



祝你好运!
I think this[^] article can help you.

It seems screen sharing is not covered by the API, but the article shows one possible solution, although I'm not sure it's appropriate to your needs.

Good luck!


我发现Skype Desktop API不支持此功能
I found that Skype Desktop API does not support this feature


这篇关于如何在C#中包含Skype屏幕共享?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆