コード例 #1
0
        private void ShowGXSetup(SetupDialogType type)
        {
            Dictionary <string, SettingPair> tempSettings = GetOptionConfigTable();

            if (tempSettings.Count == 0)
            {
                return;
            }

            GXSetup setupFrm = new GXSetup(type);

            setupFrm.ConfigTable = tempSettings;
            setupFrm.ShowDialog();
        }
コード例 #2
0
ファイル: GXSetup.cs プロジェクト: wpmyj/Zhuangkao
 public GXSetup(SetupDialogType type)
 {
     InitializeComponent();
     _type = type;
 }