Files
blowfish-encryption/[Template] Blowfish/settingsForm.Designer.cs
T
2026-06-17 11:50:06 +02:00

315 lines
18 KiB
C#

namespace $safeprojectname$
{
partial class settingsForm
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(settingsForm));
this.divider1 = new System.Windows.Forms.Label();
this.divider2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.blueColorButton = new System.Windows.Forms.Button();
this.redColorButton = new System.Windows.Forms.Button();
this.greenColorButton = new System.Windows.Forms.Button();
this.purpleColorButton = new System.Windows.Forms.Button();
this.turquoiseColorButton = new System.Windows.Forms.Button();
this.tealColorButton = new System.Windows.Forms.Button();
this.yellowColorButton = new System.Windows.Forms.Button();
this.orangeColorButton = new System.Windows.Forms.Button();
this.divider3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.cbcButton = new System.Windows.Forms.RadioButton();
this.ecbButton = new System.Windows.Forms.RadioButton();
this.ctrButton = new System.Windows.Forms.RadioButton();
this.SuspendLayout();
//
// divider1
//
this.divider1.BackColor = System.Drawing.SystemColors.Highlight;
this.divider1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.divider1.Location = new System.Drawing.Point(0, 0);
this.divider1.Name = "divider1";
this.divider1.Size = new System.Drawing.Size(400, 2);
this.divider1.TabIndex = 7;
//
// divider2
//
this.divider2.BackColor = System.Drawing.SystemColors.Highlight;
this.divider2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.divider2.Location = new System.Drawing.Point(0, 159);
this.divider2.Name = "divider2";
this.divider2.Size = new System.Drawing.Size(400, 2);
this.divider2.TabIndex = 8;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.SystemColors.Control;
this.label1.Location = new System.Drawing.Point(12, 19);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(272, 21);
this.label1.TabIndex = 9;
this.label1.Text = "Choose the color you would like to use:";
//
// blueColorButton
//
this.blueColorButton.BackColor = System.Drawing.SystemColors.Highlight;
this.blueColorButton.FlatAppearance.BorderSize = 0;
this.blueColorButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.blueColorButton.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.blueColorButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.blueColorButton.Location = new System.Drawing.Point(0, 54);
this.blueColorButton.Margin = new System.Windows.Forms.Padding(0);
this.blueColorButton.Name = "blueColorButton";
this.blueColorButton.Size = new System.Drawing.Size(100, 30);
this.blueColorButton.TabIndex = 10;
this.blueColorButton.Text = "Blue";
this.blueColorButton.UseVisualStyleBackColor = true;
this.blueColorButton.Click += new System.EventHandler(this.blueColorButton_Click);
//
// redColorButton
//
this.redColorButton.BackColor = System.Drawing.Color.Firebrick;
this.redColorButton.FlatAppearance.BorderSize = 0;
this.redColorButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.redColorButton.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.redColorButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.redColorButton.Location = new System.Drawing.Point(100, 54);
this.redColorButton.Margin = new System.Windows.Forms.Padding(0);
this.redColorButton.Name = "redColorButton";
this.redColorButton.Size = new System.Drawing.Size(100, 30);
this.redColorButton.TabIndex = 11;
this.redColorButton.Text = "Red";
this.redColorButton.UseVisualStyleBackColor = false;
this.redColorButton.Click += new System.EventHandler(this.redColorButton_Click);
//
// greenColorButton
//
this.greenColorButton.BackColor = System.Drawing.Color.ForestGreen;
this.greenColorButton.FlatAppearance.BorderSize = 0;
this.greenColorButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.greenColorButton.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.greenColorButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.greenColorButton.Location = new System.Drawing.Point(200, 54);
this.greenColorButton.Margin = new System.Windows.Forms.Padding(0);
this.greenColorButton.Name = "greenColorButton";
this.greenColorButton.Size = new System.Drawing.Size(100, 30);
this.greenColorButton.TabIndex = 12;
this.greenColorButton.Text = "Green";
this.greenColorButton.UseVisualStyleBackColor = false;
this.greenColorButton.Click += new System.EventHandler(this.greenColorButton_Click);
//
// purpleColorButton
//
this.purpleColorButton.BackColor = System.Drawing.Color.BlueViolet;
this.purpleColorButton.FlatAppearance.BorderSize = 0;
this.purpleColorButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.purpleColorButton.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.purpleColorButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.purpleColorButton.Location = new System.Drawing.Point(300, 54);
this.purpleColorButton.Margin = new System.Windows.Forms.Padding(0);
this.purpleColorButton.Name = "purpleColorButton";
this.purpleColorButton.Size = new System.Drawing.Size(100, 30);
this.purpleColorButton.TabIndex = 13;
this.purpleColorButton.Text = "Purple";
this.purpleColorButton.UseVisualStyleBackColor = false;
this.purpleColorButton.Click += new System.EventHandler(this.purpleColorButton_Click);
//
// turquoiseColorButton
//
this.turquoiseColorButton.BackColor = System.Drawing.Color.LightSeaGreen;
this.turquoiseColorButton.FlatAppearance.BorderSize = 0;
this.turquoiseColorButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.turquoiseColorButton.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.turquoiseColorButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.turquoiseColorButton.Location = new System.Drawing.Point(300, 101);
this.turquoiseColorButton.Margin = new System.Windows.Forms.Padding(0);
this.turquoiseColorButton.Name = "turquoiseColorButton";
this.turquoiseColorButton.Size = new System.Drawing.Size(100, 30);
this.turquoiseColorButton.TabIndex = 17;
this.turquoiseColorButton.Text = "Turquoise";
this.turquoiseColorButton.UseVisualStyleBackColor = false;
this.turquoiseColorButton.Click += new System.EventHandler(this.turquoiseColorButton_Click);
//
// tealColorButton
//
this.tealColorButton.BackColor = System.Drawing.Color.Teal;
this.tealColorButton.FlatAppearance.BorderSize = 0;
this.tealColorButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.tealColorButton.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tealColorButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.tealColorButton.Location = new System.Drawing.Point(200, 101);
this.tealColorButton.Margin = new System.Windows.Forms.Padding(0);
this.tealColorButton.Name = "tealColorButton";
this.tealColorButton.Size = new System.Drawing.Size(100, 30);
this.tealColorButton.TabIndex = 16;
this.tealColorButton.Text = "Teal";
this.tealColorButton.UseVisualStyleBackColor = false;
this.tealColorButton.Click += new System.EventHandler(this.tealColorButton_Click);
//
// yellowColorButton
//
this.yellowColorButton.BackColor = System.Drawing.Color.Goldenrod;
this.yellowColorButton.FlatAppearance.BorderSize = 0;
this.yellowColorButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.yellowColorButton.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.yellowColorButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.yellowColorButton.Location = new System.Drawing.Point(100, 101);
this.yellowColorButton.Margin = new System.Windows.Forms.Padding(0);
this.yellowColorButton.Name = "yellowColorButton";
this.yellowColorButton.Size = new System.Drawing.Size(100, 30);
this.yellowColorButton.TabIndex = 15;
this.yellowColorButton.Text = "Yellow";
this.yellowColorButton.UseVisualStyleBackColor = false;
this.yellowColorButton.Click += new System.EventHandler(this.yellowColorButton_Click);
//
// orangeColorButton
//
this.orangeColorButton.BackColor = System.Drawing.Color.Peru;
this.orangeColorButton.FlatAppearance.BorderSize = 0;
this.orangeColorButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.orangeColorButton.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.orangeColorButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.orangeColorButton.Location = new System.Drawing.Point(0, 101);
this.orangeColorButton.Margin = new System.Windows.Forms.Padding(0);
this.orangeColorButton.Name = "orangeColorButton";
this.orangeColorButton.Size = new System.Drawing.Size(100, 30);
this.orangeColorButton.TabIndex = 14;
this.orangeColorButton.Text = "Orange";
this.orangeColorButton.UseVisualStyleBackColor = false;
this.orangeColorButton.Click += new System.EventHandler(this.orangeColorButton_Click);
//
// divider3
//
this.divider3.BackColor = System.Drawing.SystemColors.Highlight;
this.divider3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.divider3.Location = new System.Drawing.Point(0, 261);
this.divider3.Name = "divider3";
this.divider3.Size = new System.Drawing.Size(400, 2);
this.divider3.TabIndex = 18;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.ForeColor = System.Drawing.SystemColors.Control;
this.label2.Location = new System.Drawing.Point(12, 176);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(344, 21);
this.label2.TabIndex = 19;
this.label2.Text = "Choose the encryption type you would like to use:";
//
// cbcButton
//
this.cbcButton.AutoSize = true;
this.cbcButton.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.cbcButton.ForeColor = System.Drawing.SystemColors.Control;
this.cbcButton.Location = new System.Drawing.Point(16, 215);
this.cbcButton.Name = "cbcButton";
this.cbcButton.Size = new System.Drawing.Size(57, 25);
this.cbcButton.TabIndex = 20;
this.cbcButton.Text = "CBC";
this.cbcButton.UseVisualStyleBackColor = true;
this.cbcButton.CheckedChanged += new System.EventHandler(this.cbcButton_CheckedChanged);
//
// ecbButton
//
this.ecbButton.AutoSize = true;
this.ecbButton.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ecbButton.ForeColor = System.Drawing.SystemColors.Control;
this.ecbButton.Location = new System.Drawing.Point(100, 215);
this.ecbButton.Name = "ecbButton";
this.ecbButton.Size = new System.Drawing.Size(55, 25);
this.ecbButton.TabIndex = 21;
this.ecbButton.Text = "ECB";
this.ecbButton.UseVisualStyleBackColor = true;
this.ecbButton.CheckedChanged += new System.EventHandler(this.ecbButton_CheckedChanged);
//
// ctrButton
//
this.ctrButton.AutoSize = true;
this.ctrButton.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ctrButton.ForeColor = System.Drawing.SystemColors.Control;
this.ctrButton.Location = new System.Drawing.Point(200, 215);
this.ctrButton.Name = "ctrButton";
this.ctrButton.Size = new System.Drawing.Size(55, 25);
this.ctrButton.TabIndex = 22;
this.ctrButton.Text = "CTR";
this.ctrButton.UseVisualStyleBackColor = true;
this.ctrButton.CheckedChanged += new System.EventHandler(this.ctrButton_CheckedChanged);
//
// settingsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ControlDarkDark;
this.ClientSize = new System.Drawing.Size(400, 263);
this.Controls.Add(this.ctrButton);
this.Controls.Add(this.ecbButton);
this.Controls.Add(this.cbcButton);
this.Controls.Add(this.label2);
this.Controls.Add(this.divider3);
this.Controls.Add(this.turquoiseColorButton);
this.Controls.Add(this.tealColorButton);
this.Controls.Add(this.yellowColorButton);
this.Controls.Add(this.orangeColorButton);
this.Controls.Add(this.purpleColorButton);
this.Controls.Add(this.greenColorButton);
this.Controls.Add(this.redColorButton);
this.Controls.Add(this.blueColorButton);
this.Controls.Add(this.label1);
this.Controls.Add(this.divider2);
this.Controls.Add(this.divider1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "settingsForm";
this.Text = "Settings";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label divider1;
private System.Windows.Forms.Label divider2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button blueColorButton;
private System.Windows.Forms.Button redColorButton;
private System.Windows.Forms.Button greenColorButton;
private System.Windows.Forms.Button purpleColorButton;
private System.Windows.Forms.Button turquoiseColorButton;
private System.Windows.Forms.Button tealColorButton;
private System.Windows.Forms.Button yellowColorButton;
private System.Windows.Forms.Button orangeColorButton;
private System.Windows.Forms.Label divider3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.RadioButton cbcButton;
private System.Windows.Forms.RadioButton ecbButton;
private System.Windows.Forms.RadioButton ctrButton;
}
}