예제 #1
0
        public ConfigStyles(ScintillaNet.Scintilla control, Dictionary <string, int> dict)
        {
            STLControl  = control;
            nameToIndex = dict;

            originalStyles = new Dictionary <int, styleCopy>();
            indexToName    = new Dictionary <int, string>();

            foreach (string name in dict.Keys)
            {
                ScintillaNet.Style thisSyle = STLControl.Styles[dict[name]];
                styleCopy          copy     = new styleCopy();

                copy.Font      = thisSyle.Font;
                copy.ForeColor = thisSyle.ForeColor;
                copy.BackColor = thisSyle.BackColor;

                originalStyles.Add(dict[name], copy);
                indexToName.Add(dict[name], name);
            }

            InitializeComponent();
        }
예제 #2
0
        private void ConfigColor_Load(object sender, EventArgs e)
        {
            Label  styleLabel;
            Button foreButton, backButton, fontButton;

            flowLayoutPanel.SuspendLayout();

            foreach (string name in nameToIndex.Keys)
            {
                int thisIndex = nameToIndex[name];
                ScintillaNet.Style thisStyle = STLControl.Styles[thisIndex];

                styleLabel           = new Label();
                styleLabel.Text      = name;
                styleLabel.Tag       = thisIndex;
                styleLabel.Font      = thisStyle.Font;
                styleLabel.ForeColor = thisStyle.ForeColor;
                styleLabel.BackColor = thisStyle.BackColor;
                styleLabel.Margin    = new Padding(0, 3, 0, 0);
                styleLabel.Size      = new System.Drawing.Size(170, styleLabel.Size.Height);
                flowLayoutPanel.Controls.Add(styleLabel);

                fontButton           = new Button();
                fontButton.Text      = "Font";
                fontButton.FlatStyle = FlatStyle.Popup;
                fontButton.Size      = new Size(40, 20);
                fontButton.Tag       = thisIndex;
                fontButton.Click    += new EventHandler(fontButton_Click);
                flowLayoutPanel.Controls.Add(fontButton);

                foreButton           = new Button();
                foreButton.Text      = "Text Color";
                foreButton.FlatStyle = FlatStyle.Popup;
                foreButton.Size      = new Size(70, 20);
                foreButton.Tag       = thisIndex;
                foreButton.Click    += new EventHandler(foreButton_Click);
                flowLayoutPanel.Controls.Add(foreButton);

                backButton           = new Button();
                backButton.Text      = "Background";
                backButton.FlatStyle = FlatStyle.Popup;
                backButton.Size      = new Size(80, 20);
                backButton.Tag       = thisIndex;
                backButton.Click    += new EventHandler(backButton_Click);
                flowLayoutPanel.Controls.Add(backButton);

                flowLayoutPanel.SetFlowBreak(backButton, true);
            }

            flowLayoutPanel.Controls.Remove(btnCancel);
            flowLayoutPanel.Controls.Remove(btnDone);

            flowLayoutPanel.Controls.Add(btnCancel);
            flowLayoutPanel.Controls.Add(btnDone);

            Size preferSize = flowLayoutPanel.PreferredSize;

            preferSize.Width  += 20;
            preferSize.Height += 40;
            this.Size          = preferSize;

            flowLayoutPanel.ResumeLayout();
        }