摘要:
Function RemoveUnderscore(inputString As String) As String ' 使用Replace函数将下划线"_"替换为空字符串"" RemoveUnderscore = Replace(inputString, "_", "") End Function 阅读全文
摘要:
Function pinyin(p As String) As String Dim i As Integer i = Asc(p) Select Case i Case -20319 To -20284: pinyin = "A" Case -20283 To -19776: pinyin = " 阅读全文
摘要:
1.定义 TreeView 模型 using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.Linq; 阅读全文