12 2015 档案

 
备忘_汉字转拼音或转拼音首字母
摘要:1 /// <summary> 2 /// 汉字转拼音或转拼音首字母 3 /// </summary> 4 public class ChineseToSpell 5 { 6 7 private static int[] pyValue = new int[] 8 { 9 -20319,-20317 阅读全文
posted @ 2015-12-28 18:07 zymqqc 阅读(945) 评论(2) 推荐(2)
WinForms_ListView中获取选中项数据值
摘要:string value = listList.SelectedItems[0].SubItems[1].Text;//获取首行listview的值string va = listList.SelectedItems[0].SubItems[0].Text;//获取选中行listview的值 阅读全文
posted @ 2015-12-23 17:58 zymqqc 阅读(458) 评论(0) 推荐(0)