コード例 #1
0
        private void PreferencesDialog_Load(object sender, EventArgs e)
        {
            if (TextColor.GetBrightness() <= 0.6f)
            {
                this.TextColorButton.ForeColor = Color.White;
            }

            if (BackColor.GetBrightness() <= 0.6f)
            {
                this.BackColorButton.ForeColor = Color.White;
            }

            //set button colors and font on load
            this.TextColorButton.BackColor = TextColor;
            this.BackColorButton.BackColor = BackColor;
            this.TextFontButton.Font       = Font;

            //set textbox text on load
            this.DocumentSizeWidthTextBox.Text  = DocumentSize.Width.ToString();
            this.DocumentSizeHeightTextBox.Text = DocumentSize.Height.ToString();
            this.DocumentLocationXTextBox.Text  = DocumentLocation.X.ToString();
            this.DocumentLocationYTextBox.Text  = DocumentLocation.Y.ToString();
            this.DocumentTitleTextBox.Text      = DocumentTitle;
        }