gpt4 book ai didi

c# - Skype API 消息输出

转载 作者:太空狗 更新时间:2023-10-29 21:53:46 37 4
gpt4 key购买 nike

如何从 Skype 接收消息并将其输出到我的应用程序 (textbox1.Text)?我在 skype4com 文档中寻找它,但没有找到任何东西。

最佳答案

要收听聊天消息,您可以这样做:

//First make a reference to skype4com, probably in here: C:\Program Files (x86)\Common Files\Skype
//Then use the following code:
using System;
using System.Windows.Forms;
using SKYPE4COMLib;

namespace Skype
{
public partial class Form1 : Form
{
private SKYPE4COMLib.Skype skype;

public Form1()
{
InitializeComponent();
skype = new SKYPE4COMLib.Skype();
skype.Attach(7, false);
skype.MessageStatus += new _ISkypeEvents_MessageStatusEventHandler(skype_MessageStatus);
}

private void skype_MessageStatus(ChatMessage msg, TChatMessageStatus status)
{
string message = msg.Sender + ": " + msg.Body;
listBox1.Items.Add(message);
}
}
}

关于c# - Skype API 消息输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29924460/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com