merhaba, c# speech recognition kütüphanesi ile ses algılama programı yapmaya çalışıyorum ama çalışmıyor sesi algılamıyor acaba nerde hata yapıyorum?
using System;
using System.Speech.Synthesis;
using System.Speech;
using System.Speech.Recognition;
namespace speechr
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
SpeechSynthesizer ses = new SpeechSynthesizer();
ses.Volume = 100;
ses.Speak(textBox1.Text);
if (textBox1.Text == "Kapat") { Application.Exit(); }
textBox1.Clear();
}
}
}