i want to convert speech to text in WPF . How can i do this ?? I m new in this please guide me ?? How can i start my project ??
Wow, this is not a simple solution for it. You must use voice recognition algorithm.
You can start a project in Visual Studio 2010 by the clicking File -> New -> Project ... and choicing Visual C# -> WPF Application
Learning guide you can find at http://msdn.microsoft.com/en-us/vstudio/cc136611.aspx
WPF is a presentation framework. It doesn't do text-to-speech or speech-to-text.
It's an open research problem. But you can buy commercial packages for it I think.
See for example: http://www.nuance.co.uk/naturallyspeaking/products/default.asp
WPF is used to build user interfaces, not algorithms. This is a C#,or even a .NET related question. Try to start with an Hello World program instead of such a big task. You'll progress step by step.
Please let me know that how can i convert speech to text in C# ...
Not an easy task - very specialist in fact - but as a start you might look at using soundex to match words in a dictionary (db or flat file).
This will not give you grammatical checking, and probably won't be that accurate, but will give you a working framework that you can build on.
Of course, before you do any of that, you need to manage the sound file to pick out the sounds, spaces, rhythm etc. and convert them into a value that you can manipulate within your code.
You're looking at a LOT of man hours. Some people devote their careers to this.
Please try google, you can find a lot of samples like this -
WPF Text To Speech UI -
Converting Text to Speech in a C# WPF Application-
http://www.redmondpie.com/converting-text-to-speech-in-a-c-wpf-application/