示例#1
0
 void ff_ParseStringToPinyinCompleted(object sender, ParseStringToPinyinCompletedEventArgs e)
 {
     if (e.Result == null)
     {
         return;
     }
     this.TB_No.Text = e.Result;
 }
示例#2
0
        void daPinYin_ParseStringToPinyinCompleted(object sender, ParseStringToPinyinCompletedEventArgs e)
        {
            if (string.IsNullOrEmpty(this.TB_No.Text.Trim()) == true)
            {
                this.TB_No.Text = e.Result;
            }

            if (string.IsNullOrEmpty(this.TB_PTable.Text.Trim()) == true)
            {
                this.TB_PTable.Text = e.Result;
            }
        }