示例#1
0
 /// <summary>
 /// 初始化可选择的脚本类型
 /// </summary>
 private void ComboBox_ScriptType_Init()
 {
     //获取可用的CustomShellType
     foreach (string type in InitUi.GetCustomShellTypeNameList())
     {
         comboBox_ScritpType.Items.Add(type);
     }
 }
示例#2
0
 public string[] GetCustomShellTypeNameList()
 {
     return(InitUi.GetCustomShellTypeNameList());
 }