729 lines
43 KiB
C#
729 lines
43 KiB
C#
namespace Paint_2
|
|
{
|
|
partial class PaintForm
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.components = new System.ComponentModel.Container();
|
|
this.tbxProjectName = new System.Windows.Forms.TextBox();
|
|
this.btnSave = new System.Windows.Forms.Button();
|
|
this.canvas = new System.Windows.Forms.PictureBox();
|
|
this.btnSaveCopy = new System.Windows.Forms.Button();
|
|
this.lblSelectedColor = new System.Windows.Forms.Label();
|
|
this.panelFile = new System.Windows.Forms.Panel();
|
|
this.btnLoadFile = new System.Windows.Forms.Button();
|
|
this.panelDrawing = new System.Windows.Forms.Panel();
|
|
this.lblHeight = new System.Windows.Forms.Label();
|
|
this.lblWidth = new System.Windows.Forms.Label();
|
|
this.panelSelectedColor = new System.Windows.Forms.Panel();
|
|
this.btnSelectedColor = new System.Windows.Forms.Button();
|
|
this.label14 = new System.Windows.Forms.Label();
|
|
this.panelHoverColor = new System.Windows.Forms.Panel();
|
|
this.btnHoveringColor = new System.Windows.Forms.Button();
|
|
this.lblHoveringColor = new System.Windows.Forms.Label();
|
|
this.label15 = new System.Windows.Forms.Label();
|
|
this.tmrRefresh = new System.Windows.Forms.Timer(this.components);
|
|
this.nupPencilWidth = new System.Windows.Forms.NumericUpDown();
|
|
this.btnColorHistory4 = new System.Windows.Forms.Button();
|
|
this.btnColorHistory3 = new System.Windows.Forms.Button();
|
|
this.btnColorHistory2 = new System.Windows.Forms.Button();
|
|
this.btnColorHistory1 = new System.Windows.Forms.Button();
|
|
this.btnClear = new System.Windows.Forms.Button();
|
|
this.panelTools = new System.Windows.Forms.Panel();
|
|
this.btnEyeDrop = new System.Windows.Forms.Button();
|
|
this.pbxSample = new System.Windows.Forms.PictureBox();
|
|
this.btnRandomColor = new System.Windows.Forms.Button();
|
|
this.btnColorPicker = new System.Windows.Forms.Button();
|
|
this.btnRedo = new System.Windows.Forms.Button();
|
|
this.btnUndo = new System.Windows.Forms.Button();
|
|
this.lsbTools = new System.Windows.Forms.ListBox();
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.panel3 = new System.Windows.Forms.Panel();
|
|
this.pnlLayers = new System.Windows.Forms.Panel();
|
|
this.btnLayerRemove = new System.Windows.Forms.Button();
|
|
this.BtnAddLayer = new System.Windows.Forms.Button();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.DebugLabel = new System.Windows.Forms.Label();
|
|
this.panel4 = new System.Windows.Forms.Panel();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
((System.ComponentModel.ISupportInitialize)(this.canvas)).BeginInit();
|
|
this.panelFile.SuspendLayout();
|
|
this.panelDrawing.SuspendLayout();
|
|
this.panelSelectedColor.SuspendLayout();
|
|
this.panelHoverColor.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.nupPencilWidth)).BeginInit();
|
|
this.panelTools.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.pbxSample)).BeginInit();
|
|
this.panel1.SuspendLayout();
|
|
this.panel3.SuspendLayout();
|
|
this.panel4.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// tbxProjectName
|
|
//
|
|
this.tbxProjectName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(59)))), ((int)(((byte)(59)))));
|
|
this.tbxProjectName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.tbxProjectName.Font = new System.Drawing.Font("Verdana", 15F);
|
|
this.tbxProjectName.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.tbxProjectName.Location = new System.Drawing.Point(2, 3);
|
|
this.tbxProjectName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.tbxProjectName.Name = "tbxProjectName";
|
|
this.tbxProjectName.Size = new System.Drawing.Size(225, 32);
|
|
this.tbxProjectName.TabIndex = 0;
|
|
this.tbxProjectName.Text = "Untitled Project";
|
|
//
|
|
// btnSave
|
|
//
|
|
this.btnSave.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(59)))), ((int)(((byte)(59)))));
|
|
this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|
this.btnSave.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.btnSave.Location = new System.Drawing.Point(231, 2);
|
|
this.btnSave.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.btnSave.Name = "btnSave";
|
|
this.btnSave.Size = new System.Drawing.Size(54, 33);
|
|
this.btnSave.TabIndex = 1;
|
|
this.btnSave.Text = "Save";
|
|
this.btnSave.UseVisualStyleBackColor = false;
|
|
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
|
|
//
|
|
// canvas
|
|
//
|
|
this.canvas.BackColor = System.Drawing.Color.Transparent;
|
|
this.canvas.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.canvas.Location = new System.Drawing.Point(10, 49);
|
|
this.canvas.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.canvas.Name = "canvas";
|
|
this.canvas.Size = new System.Drawing.Size(1000, 500);
|
|
this.canvas.TabIndex = 2;
|
|
this.canvas.TabStop = false;
|
|
this.canvas.MouseDown += new System.Windows.Forms.MouseEventHandler(this.canvas_MouseDown);
|
|
this.canvas.MouseUp += new System.Windows.Forms.MouseEventHandler(this.canvas_MouseUp);
|
|
//
|
|
// btnSaveCopy
|
|
//
|
|
this.btnSaveCopy.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(59)))), ((int)(((byte)(59)))));
|
|
this.btnSaveCopy.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|
this.btnSaveCopy.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.btnSaveCopy.Location = new System.Drawing.Point(289, 2);
|
|
this.btnSaveCopy.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.btnSaveCopy.Name = "btnSaveCopy";
|
|
this.btnSaveCopy.Size = new System.Drawing.Size(92, 33);
|
|
this.btnSaveCopy.TabIndex = 2;
|
|
this.btnSaveCopy.Text = "Save a copy";
|
|
this.btnSaveCopy.UseVisualStyleBackColor = false;
|
|
this.btnSaveCopy.Click += new System.EventHandler(this.btnSaveCopy_Click);
|
|
//
|
|
// lblSelectedColor
|
|
//
|
|
this.lblSelectedColor.AutoSize = true;
|
|
this.lblSelectedColor.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.lblSelectedColor.Location = new System.Drawing.Point(6, 23);
|
|
this.lblSelectedColor.Name = "lblSelectedColor";
|
|
this.lblSelectedColor.Size = new System.Drawing.Size(202, 14);
|
|
this.lblSelectedColor.TabIndex = 1;
|
|
this.lblSelectedColor.Text = "Hex:FFFFFF R:255 G:255 B:255";
|
|
//
|
|
// panelFile
|
|
//
|
|
this.panelFile.BackColor = System.Drawing.Color.Transparent;
|
|
this.panelFile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.panelFile.Controls.Add(this.btnLoadFile);
|
|
this.panelFile.Controls.Add(this.tbxProjectName);
|
|
this.panelFile.Controls.Add(this.btnSave);
|
|
this.panelFile.Controls.Add(this.btnSaveCopy);
|
|
this.panelFile.Location = new System.Drawing.Point(10, 6);
|
|
this.panelFile.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.panelFile.Name = "panelFile";
|
|
this.panelFile.Size = new System.Drawing.Size(487, 39);
|
|
this.panelFile.TabIndex = 8;
|
|
//
|
|
// btnLoadFile
|
|
//
|
|
this.btnLoadFile.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(59)))), ((int)(((byte)(59)))));
|
|
this.btnLoadFile.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|
this.btnLoadFile.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.btnLoadFile.Location = new System.Drawing.Point(385, 2);
|
|
this.btnLoadFile.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.btnLoadFile.Name = "btnLoadFile";
|
|
this.btnLoadFile.Size = new System.Drawing.Size(96, 33);
|
|
this.btnLoadFile.TabIndex = 3;
|
|
this.btnLoadFile.Text = "Load Project";
|
|
this.btnLoadFile.UseVisualStyleBackColor = false;
|
|
//
|
|
// panelDrawing
|
|
//
|
|
this.panelDrawing.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.panelDrawing.BackColor = System.Drawing.Color.Transparent;
|
|
this.panelDrawing.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.panelDrawing.Controls.Add(this.lblHeight);
|
|
this.panelDrawing.Controls.Add(this.lblWidth);
|
|
this.panelDrawing.Location = new System.Drawing.Point(737, 553);
|
|
this.panelDrawing.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.panelDrawing.Name = "panelDrawing";
|
|
this.panelDrawing.Size = new System.Drawing.Size(89, 60);
|
|
this.panelDrawing.TabIndex = 30;
|
|
//
|
|
// lblHeight
|
|
//
|
|
this.lblHeight.AutoSize = true;
|
|
this.lblHeight.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.lblHeight.Location = new System.Drawing.Point(3, 33);
|
|
this.lblHeight.Name = "lblHeight";
|
|
this.lblHeight.Size = new System.Drawing.Size(53, 14);
|
|
this.lblHeight.TabIndex = 34;
|
|
this.lblHeight.Text = "H:2000";
|
|
//
|
|
// lblWidth
|
|
//
|
|
this.lblWidth.AutoSize = true;
|
|
this.lblWidth.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.lblWidth.Location = new System.Drawing.Point(3, 7);
|
|
this.lblWidth.Name = "lblWidth";
|
|
this.lblWidth.Size = new System.Drawing.Size(57, 14);
|
|
this.lblWidth.TabIndex = 33;
|
|
this.lblWidth.Text = "W:2000";
|
|
//
|
|
// panelSelectedColor
|
|
//
|
|
this.panelSelectedColor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.panelSelectedColor.BackColor = System.Drawing.Color.Transparent;
|
|
this.panelSelectedColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.panelSelectedColor.Controls.Add(this.btnSelectedColor);
|
|
this.panelSelectedColor.Controls.Add(this.lblSelectedColor);
|
|
this.panelSelectedColor.Controls.Add(this.label14);
|
|
this.panelSelectedColor.Location = new System.Drawing.Point(377, 553);
|
|
this.panelSelectedColor.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.panelSelectedColor.Name = "panelSelectedColor";
|
|
this.panelSelectedColor.Size = new System.Drawing.Size(355, 60);
|
|
this.panelSelectedColor.TabIndex = 31;
|
|
//
|
|
// btnSelectedColor
|
|
//
|
|
this.btnSelectedColor.BackColor = System.Drawing.Color.Green;
|
|
this.btnSelectedColor.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|
this.btnSelectedColor.Font = new System.Drawing.Font("Cascadia Code", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.btnSelectedColor.Location = new System.Drawing.Point(291, 5);
|
|
this.btnSelectedColor.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.btnSelectedColor.Name = "btnSelectedColor";
|
|
this.btnSelectedColor.Size = new System.Drawing.Size(53, 49);
|
|
this.btnSelectedColor.TabIndex = 31;
|
|
this.btnSelectedColor.UseVisualStyleBackColor = false;
|
|
//
|
|
// label14
|
|
//
|
|
this.label14.AutoSize = true;
|
|
this.label14.Font = new System.Drawing.Font("Cascadia Code", 10F);
|
|
this.label14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.label14.Location = new System.Drawing.Point(6, 5);
|
|
this.label14.Name = "label14";
|
|
this.label14.Size = new System.Drawing.Size(120, 18);
|
|
this.label14.TabIndex = 29;
|
|
this.label14.Text = "Selected color";
|
|
//
|
|
// panelHoverColor
|
|
//
|
|
this.panelHoverColor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.panelHoverColor.BackColor = System.Drawing.Color.Transparent;
|
|
this.panelHoverColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.panelHoverColor.Controls.Add(this.btnHoveringColor);
|
|
this.panelHoverColor.Controls.Add(this.lblHoveringColor);
|
|
this.panelHoverColor.Controls.Add(this.label15);
|
|
this.panelHoverColor.Location = new System.Drawing.Point(10, 553);
|
|
this.panelHoverColor.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.panelHoverColor.Name = "panelHoverColor";
|
|
this.panelHoverColor.Size = new System.Drawing.Size(362, 60);
|
|
this.panelHoverColor.TabIndex = 32;
|
|
//
|
|
// btnHoveringColor
|
|
//
|
|
this.btnHoveringColor.BackColor = System.Drawing.Color.Green;
|
|
this.btnHoveringColor.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|
this.btnHoveringColor.Font = new System.Drawing.Font("Cascadia Code", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.btnHoveringColor.Location = new System.Drawing.Point(298, 5);
|
|
this.btnHoveringColor.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.btnHoveringColor.Name = "btnHoveringColor";
|
|
this.btnHoveringColor.Size = new System.Drawing.Size(53, 49);
|
|
this.btnHoveringColor.TabIndex = 30;
|
|
this.btnHoveringColor.UseVisualStyleBackColor = false;
|
|
//
|
|
// lblHoveringColor
|
|
//
|
|
this.lblHoveringColor.AutoSize = true;
|
|
this.lblHoveringColor.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.lblHoveringColor.Location = new System.Drawing.Point(7, 23);
|
|
this.lblHoveringColor.Name = "lblHoveringColor";
|
|
this.lblHoveringColor.Size = new System.Drawing.Size(202, 14);
|
|
this.lblHoveringColor.TabIndex = 1;
|
|
this.lblHoveringColor.Text = "Hex:FFFFFF R:255 G:255 B:255";
|
|
//
|
|
// label15
|
|
//
|
|
this.label15.AutoSize = true;
|
|
this.label15.Font = new System.Drawing.Font("Cascadia Code", 10F);
|
|
this.label15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.label15.Location = new System.Drawing.Point(7, 5);
|
|
this.label15.Name = "label15";
|
|
this.label15.Size = new System.Drawing.Size(120, 18);
|
|
this.label15.TabIndex = 29;
|
|
this.label15.Text = "Hovering color";
|
|
//
|
|
// tmrRefresh
|
|
//
|
|
this.tmrRefresh.Interval = 1;
|
|
this.tmrRefresh.Tick += new System.EventHandler(this.tmrRefresh_Tick);
|
|
//
|
|
// nupPencilWidth
|
|
//
|
|
this.nupPencilWidth.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(59)))), ((int)(((byte)(59)))));
|
|
this.nupPencilWidth.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
this.nupPencilWidth.Font = new System.Drawing.Font("Cascadia Code", 15F);
|
|
this.nupPencilWidth.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.nupPencilWidth.Location = new System.Drawing.Point(126, 166);
|
|
this.nupPencilWidth.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.nupPencilWidth.Maximum = new decimal(new int[] {
|
|
255,
|
|
0,
|
|
0,
|
|
0});
|
|
this.nupPencilWidth.Name = "nupPencilWidth";
|
|
this.nupPencilWidth.Size = new System.Drawing.Size(63, 27);
|
|
this.nupPencilWidth.TabIndex = 17;
|
|
this.nupPencilWidth.Value = new decimal(new int[] {
|
|
10,
|
|
0,
|
|
0,
|
|
0});
|
|
this.nupPencilWidth.ValueChanged += new System.EventHandler(this.nupPencilWidth_ValueChanged);
|
|
//
|
|
// btnColorHistory4
|
|
//
|
|
this.btnColorHistory4.BackColor = System.Drawing.Color.Red;
|
|
this.btnColorHistory4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.btnColorHistory4.Font = new System.Drawing.Font("Cascadia Code", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.btnColorHistory4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.btnColorHistory4.Location = new System.Drawing.Point(3, 2);
|
|
this.btnColorHistory4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.btnColorHistory4.Name = "btnColorHistory4";
|
|
this.btnColorHistory4.Size = new System.Drawing.Size(36, 33);
|
|
this.btnColorHistory4.TabIndex = 4;
|
|
this.btnColorHistory4.UseVisualStyleBackColor = false;
|
|
this.btnColorHistory4.Click += new System.EventHandler(this.BtnColor_Click);
|
|
//
|
|
// btnColorHistory3
|
|
//
|
|
this.btnColorHistory3.BackColor = System.Drawing.Color.Red;
|
|
this.btnColorHistory3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.btnColorHistory3.Font = new System.Drawing.Font("Cascadia Code", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.btnColorHistory3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.btnColorHistory3.Location = new System.Drawing.Point(45, 2);
|
|
this.btnColorHistory3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.btnColorHistory3.Name = "btnColorHistory3";
|
|
this.btnColorHistory3.Size = new System.Drawing.Size(36, 33);
|
|
this.btnColorHistory3.TabIndex = 3;
|
|
this.btnColorHistory3.UseVisualStyleBackColor = false;
|
|
this.btnColorHistory3.Click += new System.EventHandler(this.BtnColor_Click);
|
|
//
|
|
// btnColorHistory2
|
|
//
|
|
this.btnColorHistory2.BackColor = System.Drawing.Color.Red;
|
|
this.btnColorHistory2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.btnColorHistory2.Font = new System.Drawing.Font("Cascadia Code", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.btnColorHistory2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.btnColorHistory2.Location = new System.Drawing.Point(87, 2);
|
|
this.btnColorHistory2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.btnColorHistory2.Name = "btnColorHistory2";
|
|
this.btnColorHistory2.Size = new System.Drawing.Size(36, 33);
|
|
this.btnColorHistory2.TabIndex = 2;
|
|
this.btnColorHistory2.UseVisualStyleBackColor = false;
|
|
this.btnColorHistory2.Click += new System.EventHandler(this.BtnColor_Click);
|
|
//
|
|
// btnColorHistory1
|
|
//
|
|
this.btnColorHistory1.BackColor = System.Drawing.Color.Green;
|
|
this.btnColorHistory1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.btnColorHistory1.Font = new System.Drawing.Font("Cascadia Code", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.btnColorHistory1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.btnColorHistory1.Location = new System.Drawing.Point(129, 2);
|
|
this.btnColorHistory1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.btnColorHistory1.Name = "btnColorHistory1";
|
|
this.btnColorHistory1.Size = new System.Drawing.Size(36, 33);
|
|
this.btnColorHistory1.TabIndex = 0;
|
|
this.btnColorHistory1.UseVisualStyleBackColor = false;
|
|
this.btnColorHistory1.Click += new System.EventHandler(this.BtnColor_Click);
|
|
//
|
|
// btnClear
|
|
//
|
|
this.btnClear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnClear.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(59)))), ((int)(((byte)(59)))));
|
|
this.btnClear.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|
this.btnClear.Font = new System.Drawing.Font("Cascadia Code", 10.2F);
|
|
this.btnClear.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.btnClear.Location = new System.Drawing.Point(4, 31);
|
|
this.btnClear.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.btnClear.Name = "btnClear";
|
|
this.btnClear.Size = new System.Drawing.Size(169, 24);
|
|
this.btnClear.TabIndex = 27;
|
|
this.btnClear.Text = "Clear";
|
|
this.btnClear.UseVisualStyleBackColor = false;
|
|
this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
|
|
//
|
|
// panelTools
|
|
//
|
|
this.panelTools.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.panelTools.BackColor = System.Drawing.Color.Transparent;
|
|
this.panelTools.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.panelTools.Controls.Add(this.nupPencilWidth);
|
|
this.panelTools.Controls.Add(this.lsbTools);
|
|
this.panelTools.Controls.Add(this.pbxSample);
|
|
this.panelTools.Controls.Add(this.label1);
|
|
this.panelTools.Location = new System.Drawing.Point(1014, 6);
|
|
this.panelTools.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.panelTools.Name = "panelTools";
|
|
this.panelTools.Size = new System.Drawing.Size(196, 232);
|
|
this.panelTools.TabIndex = 31;
|
|
//
|
|
// btnEyeDrop
|
|
//
|
|
this.btnEyeDrop.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(59)))), ((int)(((byte)(59)))));
|
|
this.btnEyeDrop.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|
this.btnEyeDrop.Font = new System.Drawing.Font("Cascadia Code", 10.2F);
|
|
this.btnEyeDrop.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.btnEyeDrop.Location = new System.Drawing.Point(283, 2);
|
|
this.btnEyeDrop.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.btnEyeDrop.Name = "btnEyeDrop";
|
|
this.btnEyeDrop.Size = new System.Drawing.Size(104, 33);
|
|
this.btnEyeDrop.TabIndex = 36;
|
|
this.btnEyeDrop.Text = "EyeDropper";
|
|
this.btnEyeDrop.UseVisualStyleBackColor = false;
|
|
this.btnEyeDrop.Click += new System.EventHandler(this.btnEyeDrop_Click);
|
|
//
|
|
// pbxSample
|
|
//
|
|
this.pbxSample.Location = new System.Drawing.Point(6, 166);
|
|
this.pbxSample.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.pbxSample.Name = "pbxSample";
|
|
this.pbxSample.Size = new System.Drawing.Size(117, 59);
|
|
this.pbxSample.TabIndex = 35;
|
|
this.pbxSample.TabStop = false;
|
|
//
|
|
// btnRandomColor
|
|
//
|
|
this.btnRandomColor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(59)))), ((int)(((byte)(59)))));
|
|
this.btnRandomColor.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|
this.btnRandomColor.Font = new System.Drawing.Font("Cascadia Code", 10.2F);
|
|
this.btnRandomColor.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.btnRandomColor.Location = new System.Drawing.Point(393, 2);
|
|
this.btnRandomColor.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.btnRandomColor.Name = "btnRandomColor";
|
|
this.btnRandomColor.Size = new System.Drawing.Size(108, 33);
|
|
this.btnRandomColor.TabIndex = 34;
|
|
this.btnRandomColor.Text = "Random ";
|
|
this.btnRandomColor.UseVisualStyleBackColor = false;
|
|
this.btnRandomColor.Click += new System.EventHandler(this.btnRandomColor_Click);
|
|
//
|
|
// btnColorPicker
|
|
//
|
|
this.btnColorPicker.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(59)))), ((int)(((byte)(59)))));
|
|
this.btnColorPicker.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|
this.btnColorPicker.Font = new System.Drawing.Font("Cascadia Code", 10.2F);
|
|
this.btnColorPicker.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.btnColorPicker.Location = new System.Drawing.Point(171, 2);
|
|
this.btnColorPicker.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.btnColorPicker.Name = "btnColorPicker";
|
|
this.btnColorPicker.Size = new System.Drawing.Size(106, 33);
|
|
this.btnColorPicker.TabIndex = 33;
|
|
this.btnColorPicker.Text = "ColorPicker";
|
|
this.btnColorPicker.UseVisualStyleBackColor = false;
|
|
this.btnColorPicker.Click += new System.EventHandler(this.btnColorPicker_Click);
|
|
//
|
|
// btnRedo
|
|
//
|
|
this.btnRedo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(59)))), ((int)(((byte)(59)))));
|
|
this.btnRedo.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|
this.btnRedo.Font = new System.Drawing.Font("Cascadia Code", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.btnRedo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.btnRedo.Location = new System.Drawing.Point(3, 5);
|
|
this.btnRedo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.btnRedo.Name = "btnRedo";
|
|
this.btnRedo.Size = new System.Drawing.Size(80, 23);
|
|
this.btnRedo.TabIndex = 36;
|
|
this.btnRedo.Text = "Redo";
|
|
this.btnRedo.UseVisualStyleBackColor = false;
|
|
this.btnRedo.Click += new System.EventHandler(this.btnRedo_Click);
|
|
//
|
|
// btnUndo
|
|
//
|
|
this.btnUndo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(59)))), ((int)(((byte)(59)))));
|
|
this.btnUndo.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|
this.btnUndo.Font = new System.Drawing.Font("Cascadia Code", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.btnUndo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.btnUndo.Location = new System.Drawing.Point(92, 5);
|
|
this.btnUndo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.btnUndo.Name = "btnUndo";
|
|
this.btnUndo.Size = new System.Drawing.Size(80, 23);
|
|
this.btnUndo.TabIndex = 35;
|
|
this.btnUndo.Text = "Undo";
|
|
this.btnUndo.UseVisualStyleBackColor = false;
|
|
this.btnUndo.Click += new System.EventHandler(this.btnUndo_Click);
|
|
//
|
|
// lsbTools
|
|
//
|
|
this.lsbTools.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(59)))), ((int)(((byte)(59)))));
|
|
this.lsbTools.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.lsbTools.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.lsbTools.FormattingEnabled = true;
|
|
this.lsbTools.ItemHeight = 14;
|
|
this.lsbTools.Location = new System.Drawing.Point(6, 20);
|
|
this.lsbTools.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.lsbTools.Name = "lsbTools";
|
|
this.lsbTools.Size = new System.Drawing.Size(183, 142);
|
|
this.lsbTools.TabIndex = 32;
|
|
this.lsbTools.SelectedIndexChanged += new System.EventHandler(this.lsbTools_SelectedIndexChanged);
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.panel1.BackColor = System.Drawing.Color.Transparent;
|
|
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.panel1.Controls.Add(this.btnClear);
|
|
this.panel1.Controls.Add(this.btnRedo);
|
|
this.panel1.Controls.Add(this.btnUndo);
|
|
this.panel1.Location = new System.Drawing.Point(832, 553);
|
|
this.panel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(178, 60);
|
|
this.panel1.TabIndex = 35;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Font = new System.Drawing.Font("Cascadia Code", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.label1.Location = new System.Drawing.Point(3, 2);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(84, 16);
|
|
this.label1.TabIndex = 36;
|
|
this.label1.Text = "Paint tools";
|
|
//
|
|
// panel3
|
|
//
|
|
this.panel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.panel3.BackColor = System.Drawing.Color.Transparent;
|
|
this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.panel3.Controls.Add(this.label3);
|
|
this.panel3.Controls.Add(this.pnlLayers);
|
|
this.panel3.Controls.Add(this.btnLayerRemove);
|
|
this.panel3.Controls.Add(this.BtnAddLayer);
|
|
this.panel3.Controls.Add(this.label2);
|
|
this.panel3.Location = new System.Drawing.Point(1014, 242);
|
|
this.panel3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.panel3.Name = "panel3";
|
|
this.panel3.Size = new System.Drawing.Size(196, 259);
|
|
this.panel3.TabIndex = 37;
|
|
//
|
|
// pnlLayers
|
|
//
|
|
this.pnlLayers.AutoScroll = true;
|
|
this.pnlLayers.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.pnlLayers.Location = new System.Drawing.Point(5, 26);
|
|
this.pnlLayers.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.pnlLayers.Name = "pnlLayers";
|
|
this.pnlLayers.Size = new System.Drawing.Size(184, 189);
|
|
this.pnlLayers.TabIndex = 39;
|
|
//
|
|
// btnLayerRemove
|
|
//
|
|
this.btnLayerRemove.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(59)))), ((int)(((byte)(59)))));
|
|
this.btnLayerRemove.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|
this.btnLayerRemove.Font = new System.Drawing.Font("Cascadia Code", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.btnLayerRemove.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.btnLayerRemove.Location = new System.Drawing.Point(111, 219);
|
|
this.btnLayerRemove.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.btnLayerRemove.Name = "btnLayerRemove";
|
|
this.btnLayerRemove.Size = new System.Drawing.Size(78, 35);
|
|
this.btnLayerRemove.TabIndex = 38;
|
|
this.btnLayerRemove.Text = "-";
|
|
this.btnLayerRemove.UseVisualStyleBackColor = false;
|
|
this.btnLayerRemove.Click += new System.EventHandler(this.btnLayerRemove_Click);
|
|
//
|
|
// BtnAddLayer
|
|
//
|
|
this.BtnAddLayer.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(59)))), ((int)(((byte)(59)))));
|
|
this.BtnAddLayer.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|
this.BtnAddLayer.Font = new System.Drawing.Font("Cascadia Code", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.BtnAddLayer.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.BtnAddLayer.Location = new System.Drawing.Point(3, 219);
|
|
this.BtnAddLayer.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.BtnAddLayer.Name = "BtnAddLayer";
|
|
this.BtnAddLayer.Size = new System.Drawing.Size(78, 35);
|
|
this.BtnAddLayer.TabIndex = 37;
|
|
this.BtnAddLayer.Text = "+";
|
|
this.BtnAddLayer.UseVisualStyleBackColor = false;
|
|
this.BtnAddLayer.Click += new System.EventHandler(this.BtnAddLayer_Click);
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Font = new System.Drawing.Font("Cascadia Code", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label2.Location = new System.Drawing.Point(7, 8);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(0, 16);
|
|
this.label2.TabIndex = 36;
|
|
//
|
|
// DebugLabel
|
|
//
|
|
this.DebugLabel.AutoSize = true;
|
|
this.DebugLabel.Location = new System.Drawing.Point(18, 86);
|
|
this.DebugLabel.Name = "DebugLabel";
|
|
this.DebugLabel.Size = new System.Drawing.Size(48, 14);
|
|
this.DebugLabel.TabIndex = 38;
|
|
this.DebugLabel.Text = "Debug";
|
|
//
|
|
// panel4
|
|
//
|
|
this.panel4.BackColor = System.Drawing.Color.Transparent;
|
|
this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.panel4.Controls.Add(this.btnEyeDrop);
|
|
this.panel4.Controls.Add(this.btnRandomColor);
|
|
this.panel4.Controls.Add(this.btnColorPicker);
|
|
this.panel4.Controls.Add(this.btnColorHistory1);
|
|
this.panel4.Controls.Add(this.btnColorHistory2);
|
|
this.panel4.Controls.Add(this.btnColorHistory4);
|
|
this.panel4.Controls.Add(this.btnColorHistory3);
|
|
this.panel4.Location = new System.Drawing.Point(503, 6);
|
|
this.panel4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.panel4.Name = "panel4";
|
|
this.panel4.Size = new System.Drawing.Size(507, 39);
|
|
this.panel4.TabIndex = 37;
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Font = new System.Drawing.Font("Cascadia Code", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
|
|
this.label3.Location = new System.Drawing.Point(3, 8);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(49, 16);
|
|
this.label3.TabIndex = 37;
|
|
this.label3.Text = "Layers";
|
|
//
|
|
// PaintForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 14F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
|
|
this.ClientSize = new System.Drawing.Size(1222, 618);
|
|
this.Controls.Add(this.panel4);
|
|
this.Controls.Add(this.DebugLabel);
|
|
this.Controls.Add(this.panel3);
|
|
this.Controls.Add(this.panel1);
|
|
this.Controls.Add(this.panelHoverColor);
|
|
this.Controls.Add(this.panelSelectedColor);
|
|
this.Controls.Add(this.panelTools);
|
|
this.Controls.Add(this.panelDrawing);
|
|
this.Controls.Add(this.panelFile);
|
|
this.Controls.Add(this.canvas);
|
|
this.DoubleBuffered = true;
|
|
this.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(214)))), ((int)(((byte)(214)))), ((int)(((byte)(214)))));
|
|
this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.MinimumSize = new System.Drawing.Size(1238, 549);
|
|
this.Name = "PaintForm";
|
|
this.Text = "Paint 2";
|
|
this.Load += new System.EventHandler(this.PaintForm_Load);
|
|
this.Resize += new System.EventHandler(this.PaintForm_Resize);
|
|
((System.ComponentModel.ISupportInitialize)(this.canvas)).EndInit();
|
|
this.panelFile.ResumeLayout(false);
|
|
this.panelFile.PerformLayout();
|
|
this.panelDrawing.ResumeLayout(false);
|
|
this.panelDrawing.PerformLayout();
|
|
this.panelSelectedColor.ResumeLayout(false);
|
|
this.panelSelectedColor.PerformLayout();
|
|
this.panelHoverColor.ResumeLayout(false);
|
|
this.panelHoverColor.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.nupPencilWidth)).EndInit();
|
|
this.panelTools.ResumeLayout(false);
|
|
this.panelTools.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.pbxSample)).EndInit();
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel3.ResumeLayout(false);
|
|
this.panel3.PerformLayout();
|
|
this.panel4.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox tbxProjectName;
|
|
private System.Windows.Forms.Button btnSave;
|
|
private System.Windows.Forms.PictureBox canvas;
|
|
private System.Windows.Forms.Button btnSaveCopy;
|
|
private System.Windows.Forms.Label lblSelectedColor;
|
|
private System.Windows.Forms.Panel panelFile;
|
|
private System.Windows.Forms.Panel panelDrawing;
|
|
private System.Windows.Forms.Panel panelSelectedColor;
|
|
private System.Windows.Forms.Label label14;
|
|
private System.Windows.Forms.Panel panelHoverColor;
|
|
private System.Windows.Forms.Label lblHoveringColor;
|
|
private System.Windows.Forms.Label label15;
|
|
private System.Windows.Forms.Timer tmrRefresh;
|
|
private System.Windows.Forms.Button btnHoveringColor;
|
|
private System.Windows.Forms.Button btnSelectedColor;
|
|
private System.Windows.Forms.NumericUpDown nupPencilWidth;
|
|
private System.Windows.Forms.Button btnColorHistory4;
|
|
private System.Windows.Forms.Button btnColorHistory3;
|
|
private System.Windows.Forms.Button btnColorHistory2;
|
|
private System.Windows.Forms.Button btnColorHistory1;
|
|
private System.Windows.Forms.Button btnClear;
|
|
private System.Windows.Forms.Panel panelTools;
|
|
private System.Windows.Forms.ListBox lsbTools;
|
|
private System.Windows.Forms.Label lblHeight;
|
|
private System.Windows.Forms.Label lblWidth;
|
|
private System.Windows.Forms.Button btnRandomColor;
|
|
private System.Windows.Forms.Button btnUndo;
|
|
private System.Windows.Forms.Button btnRedo;
|
|
private System.Windows.Forms.Button btnColorPicker;
|
|
private System.Windows.Forms.PictureBox pbxSample;
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Panel panel3;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Button btnLoadFile;
|
|
private System.Windows.Forms.Button btnEyeDrop;
|
|
private System.Windows.Forms.Button btnLayerRemove;
|
|
private System.Windows.Forms.Button BtnAddLayer;
|
|
private System.Windows.Forms.Label DebugLabel;
|
|
private System.Windows.Forms.Panel pnlLayers;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.Panel panel4;
|
|
}
|
|
}
|
|
|