public SettingForm(MainFlowLayoutPanel mflp)
        {
            this.mflp    = mflp;
            intActiveTab = mflp.getActiveTab();
            Text         = "ショートカット設定「" + intActiveTab + '」';
            Width        = 687;
            Height       = 396;
            Opacity      = 0.5 + 0.25 + 0.125 + 0.0625;//+0.03125+0.015625;
            KeyPreview   = true;

            setCategory();
            setLabelAndLink();
            setButton();
        }
Example #2
0
        public MainForm()
        {
            AutoSizeMode  = AutoSizeMode.GrowAndShrink;
            Opacity       = 0;
            BackColor     = Color.Black;
            Width         = 652;
            Height        = 476;
            ControlBox    = false;
            ShowInTaskbar = false;
            KeyPreview    = true;

            StartPosition = FormStartPosition.CenterScreen;
            hkc           = new HotKeyVisibleControl(this, 0x01, Keys.Q);

            panel = new MainFlowLayoutPanel(this);
        }