示例#1
0
 public static void ShowConfig(string orgConfig) =>
 VgcApis.Misc.UI.Invoke(() =>
 {
     var f = new FormConfiger();
     f.Show();
     f.configer.LoadConfigString(orgConfig);
 });
示例#2
0
        public static void ShowServer(string uid) =>

        VgcApis.Misc.UI.Invoke(() =>
        {
            var f = new FormConfiger();
            f.Show();
            f.configer.LoadConfigByUid(uid);
            f.SetTitle(f.configer.GetAlias());
        });