Google Translate tools uses the APIS provided by goolge to write a translation tool,CodeIt is easy to run as follows:
Download Google Translate API: http://code.google.com/p/google-api-for-dotnet/ from Google's official website
The translation code is as follows:
Private voidBtntranslate_click (ObjectSender,EventargsE) {Google. API.LanguageStart = (Google. API.Language)Enum. Parse (Typeof(Google. API.Language),
cmbstart. selecteditem. tostring (); Google. API. language end = (Google. API. language ) Enum . parse ( typeof (Google. API. language ),
Cmbend. selecteditem. tostring ());StringStrcontent =Translator. Translate (txtcontent. Text, start, end); txttranslateafter. Text = strcontent. tostring ();// MessageBox. Show (start. tostring ());}# RegionCustomized LanguagePublic voidBindlanguage () {cmbstart. datasource = system.Enum. Getnames (Typeof(Google. API.Language); Cmbend. datasource = system.Enum. Getnames (Typeof(Google. API.Language));}# Endregion
Download:/files/caodaiming/translatetools.rar