⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 colorpickerdialog.designer.cs

📁 一个C#开发的类似PHOTOSHOP的软件,用到了很多图形算法.
💻 CS
📖 第 1 页 / 共 2 页
字号:
      this.groupBox2.Name = "groupBox2";
      this.groupBox2.Size = new System.Drawing.Size(115, 127);
      this.groupBox2.TabIndex = 102;
      this.groupBox2.TabStop = false;
      this.groupBox2.Text = "颜色预览";
      // 
      // colorPreviewLabel
      // 
      this.colorPreviewLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
      this.colorPreviewLabel.Location = new System.Drawing.Point(6, 17);
      this.colorPreviewLabel.Name = "colorPreviewLabel";
      this.colorPreviewLabel.Size = new System.Drawing.Size(100, 100);
      this.colorPreviewLabel.TabIndex = 8;
      // 
      // groupBox3
      // 
      this.groupBox3.Controls.Add(this.transparencyLabel);
      this.groupBox3.Controls.Add(this.blueUpDown);
      this.groupBox3.Controls.Add(this.greenUpDown);
      this.groupBox3.Controls.Add(this.redUpDown);
      this.groupBox3.Controls.Add(this.label12);
      this.groupBox3.Controls.Add(this.rgbHexTextBox);
      this.groupBox3.Controls.Add(this.label17);
      this.groupBox3.Controls.Add(this.label11);
      this.groupBox3.Controls.Add(this.label10);
      this.groupBox3.Location = new System.Drawing.Point(12, 276);
      this.groupBox3.Name = "groupBox3";
      this.groupBox3.Size = new System.Drawing.Size(332, 52);
      this.groupBox3.TabIndex = 103;
      this.groupBox3.TabStop = false;
      this.groupBox3.Text = "RGB";
      // 
      // transparencyLabel
      // 
      this.transparencyLabel.BackColor = System.Drawing.Color.Red;
      this.transparencyLabel.Location = new System.Drawing.Point(305, 22);
      this.transparencyLabel.Name = "transparencyLabel";
      this.transparencyLabel.Size = new System.Drawing.Size(16, 16);
      this.transparencyLabel.TabIndex = 100;
      this.transparencyLabel.Click += new System.EventHandler(this.transparencyLabel_Click);
      // 
      // blueUpDown
      // 
      this.blueUpDown.Location = new System.Drawing.Point(156, 20);
      this.blueUpDown.Maximum = new decimal(new int[] {
            255,
            0,
            0,
            0});
      this.blueUpDown.Name = "blueUpDown";
      this.blueUpDown.Size = new System.Drawing.Size(41, 21);
      this.blueUpDown.TabIndex = 11;
      this.blueUpDown.ValueChanged += new System.EventHandler(this.blueUpDown_ValueChanged);
      // 
      // greenUpDown
      // 
      this.greenUpDown.Location = new System.Drawing.Point(90, 20);
      this.greenUpDown.Maximum = new decimal(new int[] {
            255,
            0,
            0,
            0});
      this.greenUpDown.Name = "greenUpDown";
      this.greenUpDown.Size = new System.Drawing.Size(41, 21);
      this.greenUpDown.TabIndex = 10;
      this.greenUpDown.ValueChanged += new System.EventHandler(this.greenUpDown_ValueChanged);
      // 
      // redUpDown
      // 
      this.redUpDown.Location = new System.Drawing.Point(24, 20);
      this.redUpDown.Maximum = new decimal(new int[] {
            255,
            0,
            0,
            0});
      this.redUpDown.Name = "redUpDown";
      this.redUpDown.Size = new System.Drawing.Size(41, 21);
      this.redUpDown.TabIndex = 9;
      this.redUpDown.ValueChanged += new System.EventHandler(this.redUpDown_ValueChanged);
      // 
      // label12
      // 
      this.label12.AutoSize = true;
      this.label12.Location = new System.Drawing.Point(137, 24);
      this.label12.Name = "label12";
      this.label12.Size = new System.Drawing.Size(17, 12);
      this.label12.TabIndex = 0;
      this.label12.Text = "B:";
      // 
      // rgbHexTextBox
      // 
      this.rgbHexTextBox.Location = new System.Drawing.Point(225, 20);
      this.rgbHexTextBox.Name = "rgbHexTextBox";
      this.rgbHexTextBox.Size = new System.Drawing.Size(72, 21);
      this.rgbHexTextBox.TabIndex = 19;
      this.rgbHexTextBox.TextChanged += new System.EventHandler(this.rgbHexTextBox_TextChanged);
      // 
      // label17
      // 
      this.label17.AutoSize = true;
      this.label17.Location = new System.Drawing.Point(212, 24);
      this.label17.Name = "label17";
      this.label17.Size = new System.Drawing.Size(11, 12);
      this.label17.TabIndex = 0;
      this.label17.Text = "#";
      // 
      // label11
      // 
      this.label11.AutoSize = true;
      this.label11.Location = new System.Drawing.Point(71, 24);
      this.label11.Name = "label11";
      this.label11.Size = new System.Drawing.Size(17, 12);
      this.label11.TabIndex = 0;
      this.label11.Text = "G:";
      // 
      // label10
      // 
      this.label10.AutoSize = true;
      this.label10.Location = new System.Drawing.Point(5, 24);
      this.label10.Name = "label10";
      this.label10.Size = new System.Drawing.Size(17, 12);
      this.label10.TabIndex = 0;
      this.label10.Text = "R:";
      // 
      // btnCancel
      // 
      this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
      this.btnCancel.Location = new System.Drawing.Point(168, 334);
      this.btnCancel.Name = "btnCancel";
      this.btnCancel.Size = new System.Drawing.Size(51, 23);
      this.btnCancel.TabIndex = 2;
      this.btnCancel.Text = "取消";
      this.btnCancel.UseVisualStyleBackColor = true;
      // 
      // btnOk
      // 
      this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
      this.btnOk.Location = new System.Drawing.Point(102, 334);
      this.btnOk.Name = "btnOk";
      this.btnOk.Size = new System.Drawing.Size(51, 23);
      this.btnOk.TabIndex = 1;
      this.btnOk.Text = "确定";
      this.btnOk.UseVisualStyleBackColor = true;
      // 
      // ColorPickerDialog
      // 
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
      this.ClientSize = new System.Drawing.Size(354, 368);
      this.Controls.Add(this.btnCancel);
      this.Controls.Add(this.btnOk);
      this.Controls.Add(this.groupBox3);
      this.Controls.Add(this.groupBox2);
      this.Controls.Add(this.groupBox1);
      this.MaximizeBox = false;
      this.MaximumSize = new System.Drawing.Size(362, 395);
      this.MinimizeBox = false;
      this.MinimumSize = new System.Drawing.Size(362, 395);
      this.Name = "ColorPickerDialog";
      this.ShowIcon = false;
      this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
      this.Text = "颜色拾取器";
      this.Load += new System.EventHandler(this.ColorPickerDialog_Load);
      this.groupBox1.ResumeLayout(false);
      this.groupBox1.PerformLayout();
      ((System.ComponentModel.ISupportInitialize)(this.luminancePictureBox)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.saturationPictureBox)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.luminanceUpDown)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.saturationUpDown)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.hueUpDown)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.huePictureBox)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.luminanceTrackBar)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.saturationTrackBar)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.hueTrackBar)).EndInit();
      this.groupBox2.ResumeLayout(false);
      this.groupBox3.ResumeLayout(false);
      this.groupBox3.PerformLayout();
      ((System.ComponentModel.ISupportInitialize)(this.blueUpDown)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.greenUpDown)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.redUpDown)).EndInit();
      this.ResumeLayout(false);

    }

    #endregion

    private System.Windows.Forms.GroupBox groupBox1;
    private System.Windows.Forms.PictureBox luminancePictureBox;
    private System.Windows.Forms.PictureBox saturationPictureBox;
    private System.Windows.Forms.PictureBox huePictureBox;
    private System.Windows.Forms.TrackBar luminanceTrackBar;
    private System.Windows.Forms.TrackBar saturationTrackBar;
    private System.Windows.Forms.TrackBar hueTrackBar;
    private System.Windows.Forms.GroupBox groupBox2;
    private System.Windows.Forms.Label colorPreviewLabel;
    private System.Windows.Forms.GroupBox groupBox3;
    private System.Windows.Forms.Label label3;
    private System.Windows.Forms.Label label2;
    private System.Windows.Forms.Label label1;
    private System.Windows.Forms.Label label12;
    private System.Windows.Forms.Label label11;
    private System.Windows.Forms.Label label10;
    private System.Windows.Forms.TextBox rgbHexTextBox;
    private System.Windows.Forms.Label label17;
    private System.Windows.Forms.Button btnCancel;
    private System.Windows.Forms.Button btnOk;
    private System.Windows.Forms.NumericUpDown redUpDown;
    private System.Windows.Forms.NumericUpDown blueUpDown;
    private System.Windows.Forms.NumericUpDown greenUpDown;
    private System.Windows.Forms.NumericUpDown luminanceUpDown;
    private System.Windows.Forms.NumericUpDown saturationUpDown;
    private System.Windows.Forms.NumericUpDown hueUpDown;
    private System.Windows.Forms.Label transparencyLabel;

  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -