首页 > TAG信息列表 > PYstr

C#将汉字转换为拼音

首先上效果图     方法调用 private void txt_Chinese_TextChanged(object sender, EventArgs e) { txt_PinYIn.Text = //调用拼音类的GetABC方法得到拼音字符串 new PinYin().GetABC(txt_Chinese.Text); } 汉字转拼音的方法