MUTENESS ASSİSTMENT 1)WHY CHOICE ? 2)ABOUT DESİGN 3)WHICH CODES USING 4)REFERENCE By Alican Öçal/2010513046
1)WHY CHOICE HELPFUL SMART SIMPLE ALGORTHEM
2)DESİGN
2)DESİGN
3)WHİCH CODES? using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.IO; using System.Speech.Synthesis; namespace muteness_Assist
3)WHİCH CODES ? SpeechSynthesizer sp = new SpeechSynthesizer(); public Form1() { InitializeComponent(); } private void button2_Click(object sender, EventArgs e) DirectoryInfo d = new DirectoryInfo(@"D:\Test") FileInfo[] Files = d.GetFiles("*.txt"); foreach (FileInfo file in Files) comboBox1.Items.Add(file.Name); button1.Enabled = true;
3)Which codes ? try { do listBox1.Items.Add(reader.ReadLine()); } } while (reader.Peek() != -1); catch listBox1.Items.Add("You dont have any !");
3)WHİCH CODES ? reader.Close(); } private void listBox1_SelectedIndexChanged(object sender, EventArgs e) { sp.Speak(listBox1.Text); private void button3_Click(object sender, EventArgs e) sp.Speak(textBox1.Text);
4)REFERENCE 1)PROGRAMING C# 3.0,FİFTH EDİTİON 2) http://www.sourcecodester.com/c-sharp 3)Ass.Prof.Dr.Turgay İbrikçi lecture notes
THANK YOU FOR LİSTENİNG