コード例 #1
0
ファイル: Form1.cs プロジェクト: yangzhinong/CWLibrary
        private void Provider16_OnPlaying(string text, int charIndex)
        {
            Debug.WriteLine($"正在播第{charIndex}个字符");

            this.Invoke(new Action(() =>
            {
                Txt1.Select(charIndex, 1);
                Txt1.Focus();
                LblPlayingTip.Text = $"正在播第{charIndex}个字符";
            }));
        }
コード例 #2
0
ファイル: Form1.cs プロジェクト: yangzhinong/CWLibrary
 private void WaveOut_PlaybackStopped(object sender, StoppedEventArgs e)
 {
     LblPlayingTip.Text = $"播放完毕";
     Txt1.Select(Txt1.Text.Length, 1);
 }