일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- C++
- 유튜브 동영상 강의
- 표준 입출력
- 졸업 작품 소재
- 알고리즘
- 안드로이드 앱 개발
- 추천
- 클래스 다이어그램
- 독립기념관
- c언어
- 언제나 휴일
- 원격 제어 프로그램
- 동영상
- 강의
- 소스 코드
- 파이썬
- 실습
- 소켓 통신
- 네트워크 프로그래밍
- 실습으로 다지는 c#
- 충남 천안
- Windows Forms
- 산책하기 좋은 곳
- 프로젝트
- 무료 동영상 강의
- 표준 라이브러리 함수
- c#
- 언제나휴일
- 동영상 강의
- 캡슐화
- Today
- Total
목록Kakao 번역 API (2)
프로그래밍 언어 및 기술 [언제나휴일]
유튜브 동영상 강의 [WPF] 번역 나래이터 - WrapSpeechLib 만들기 Narrator 소스 코드 using System.Collections.Generic; using System.Globalization; using System.Speech.Synthesis; using WrapKakaoLib; namespace WrapSpeechLib { /// /// 번역 나래이터 클래스 /// public class Narrator { static SpeechSynthesizer speecher = new SpeechSynthesizer(); static Dictionary voice_dics = new Dictionary(); static Narrator() { foreach (InstalledVoi..
유튜브 동영상 강의 번역 나래이터 구현 화면 배치 MainWindow.xaml.cs 소스 코드 using System.Collections.Generic; using System.Windows; using System.Windows.Controls; using WrapKakaoLib; using WrapSpeechLib; namespace 번역_나래이터_v0._1 { /// /// MainWindow.xaml에 대한 상호 작용 논리 /// public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } private void btn_speek_Click(object sender, RoutedEventArgs ..