こんにちはエキスパート:)私の電信ボットがメッセージを受信するたびにMessageBoxを表示しようとしています。私はTelegram.Botパッケージを使用し、これらのコードを書いています:OnMessageイベントはTelegram.Botパッケージで起動しません
TelegramBotClient Bot = new TelegramBotClient("MyToken");
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
Bot.OnMessage += Bot_OnMessage;
Bot.OnUpdate += Bot_OnUpdate;
}
private void Bot_OnMessage(object sender, Telegram.Bot.Args.MessageEventArgs e)
{
MessageBox.Show(e.Message.Text);
}
private void Bot_OnUpdate(object sender, Telegram.Bot.Args.UpdateEventArgs e)
{
var botClient = (TelegramBotClient)sender;
MessageBox.Show(e.Update.Message.Text);
}
私はボットにメッセージを送信するときにメッセージボックスを表示しません。 どうしたの? :S