|
@@ -28,6 +28,7 @@
|
|
/// </summary>
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
private void InitializeComponent()
|
|
{
|
|
{
|
|
|
|
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
|
|
this.PasswordHasherInputTextBox = new System.Windows.Forms.TextBox();
|
|
this.PasswordHasherInputTextBox = new System.Windows.Forms.TextBox();
|
|
this.PasswordHasherOutputTextBox = new System.Windows.Forms.TextBox();
|
|
this.PasswordHasherOutputTextBox = new System.Windows.Forms.TextBox();
|
|
this.GuidGeneratorCopyAttributeButton = new System.Windows.Forms.Button();
|
|
this.GuidGeneratorCopyAttributeButton = new System.Windows.Forms.Button();
|
|
@@ -104,6 +105,13 @@
|
|
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.RsaKeyGenerateButton = new System.Windows.Forms.Button();
|
|
this.RsaKeyGenerateButton = new System.Windows.Forms.Button();
|
|
this.RsaKeySizeUpDown = new System.Windows.Forms.NumericUpDown();
|
|
this.RsaKeySizeUpDown = new System.Windows.Forms.NumericUpDown();
|
|
|
|
+ this.tabPage8 = new System.Windows.Forms.TabPage();
|
|
|
|
+ this.splitContainer2 = new System.Windows.Forms.SplitContainer();
|
|
|
|
+ this.InputCodeTextBox = new System.Windows.Forms.RichTextBox();
|
|
|
|
+ this.ConvertedCodeTextBox = new System.Windows.Forms.RichTextBox();
|
|
|
|
+ this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
|
|
|
|
+ this.ConvertCodeButton = new System.Windows.Forms.Button();
|
|
|
|
+ this.CopyButton = new System.Windows.Forms.Button();
|
|
this.tabControl1.SuspendLayout();
|
|
this.tabControl1.SuspendLayout();
|
|
this.tabPage2.SuspendLayout();
|
|
this.tabPage2.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.BulkNewGuidUpDown)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.BulkNewGuidUpDown)).BeginInit();
|
|
@@ -129,6 +137,12 @@
|
|
this.splitContainer1.SuspendLayout();
|
|
this.splitContainer1.SuspendLayout();
|
|
this.flowLayoutPanel1.SuspendLayout();
|
|
this.flowLayoutPanel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.RsaKeySizeUpDown)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.RsaKeySizeUpDown)).BeginInit();
|
|
|
|
+ this.tabPage8.SuspendLayout();
|
|
|
|
+ ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
|
|
|
|
+ this.splitContainer2.Panel1.SuspendLayout();
|
|
|
|
+ this.splitContainer2.Panel2.SuspendLayout();
|
|
|
|
+ this.splitContainer2.SuspendLayout();
|
|
|
|
+ this.flowLayoutPanel2.SuspendLayout();
|
|
this.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
//
|
|
// PasswordHasherInputTextBox
|
|
// PasswordHasherInputTextBox
|
|
@@ -265,6 +279,7 @@
|
|
this.tabControl1.Controls.Add(this.tabPage5);
|
|
this.tabControl1.Controls.Add(this.tabPage5);
|
|
this.tabControl1.Controls.Add(this.tabPage6);
|
|
this.tabControl1.Controls.Add(this.tabPage6);
|
|
this.tabControl1.Controls.Add(this.tabPage7);
|
|
this.tabControl1.Controls.Add(this.tabPage7);
|
|
|
|
+ this.tabControl1.Controls.Add(this.tabPage8);
|
|
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.tabControl1.Location = new System.Drawing.Point(0, 0);
|
|
this.tabControl1.Location = new System.Drawing.Point(0, 0);
|
|
this.tabControl1.Multiline = true;
|
|
this.tabControl1.Multiline = true;
|
|
@@ -1062,6 +1077,86 @@
|
|
0,
|
|
0,
|
|
0});
|
|
0});
|
|
//
|
|
//
|
|
|
|
+ // tabPage8
|
|
|
|
+ //
|
|
|
|
+ this.tabPage8.Controls.Add(this.splitContainer2);
|
|
|
|
+ this.tabPage8.Controls.Add(this.flowLayoutPanel2);
|
|
|
|
+ this.tabPage8.Location = new System.Drawing.Point(4, 40);
|
|
|
|
+ this.tabPage8.Name = "tabPage8";
|
|
|
|
+ this.tabPage8.Padding = new System.Windows.Forms.Padding(3);
|
|
|
|
+ this.tabPage8.Size = new System.Drawing.Size(747, 676);
|
|
|
|
+ this.tabPage8.TabIndex = 7;
|
|
|
|
+ this.tabPage8.Text = "HTML Code Paste Helper";
|
|
|
|
+ this.tabPage8.UseVisualStyleBackColor = true;
|
|
|
|
+ //
|
|
|
|
+ // splitContainer2
|
|
|
|
+ //
|
|
|
|
+ this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
+ this.splitContainer2.Location = new System.Drawing.Point(3, 35);
|
|
|
|
+ this.splitContainer2.Name = "splitContainer2";
|
|
|
|
+ this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
|
|
|
+ //
|
|
|
|
+ // splitContainer2.Panel1
|
|
|
|
+ //
|
|
|
|
+ this.splitContainer2.Panel1.Controls.Add(this.InputCodeTextBox);
|
|
|
|
+ //
|
|
|
|
+ // splitContainer2.Panel2
|
|
|
|
+ //
|
|
|
|
+ this.splitContainer2.Panel2.Controls.Add(this.ConvertedCodeTextBox);
|
|
|
|
+ this.splitContainer2.Size = new System.Drawing.Size(741, 638);
|
|
|
|
+ this.splitContainer2.SplitterDistance = 351;
|
|
|
|
+ this.splitContainer2.TabIndex = 5;
|
|
|
|
+ //
|
|
|
|
+ // InputCodeTextBox
|
|
|
|
+ //
|
|
|
|
+ this.InputCodeTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
+ this.InputCodeTextBox.Location = new System.Drawing.Point(0, 0);
|
|
|
|
+ this.InputCodeTextBox.Name = "InputCodeTextBox";
|
|
|
|
+ this.InputCodeTextBox.Size = new System.Drawing.Size(741, 351);
|
|
|
|
+ this.InputCodeTextBox.TabIndex = 0;
|
|
|
|
+ this.InputCodeTextBox.Text = resources.GetString("InputCodeTextBox.Text");
|
|
|
|
+ this.InputCodeTextBox.WordWrap = false;
|
|
|
|
+ //
|
|
|
|
+ // ConvertedCodeTextBox
|
|
|
|
+ //
|
|
|
|
+ this.ConvertedCodeTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
+ this.ConvertedCodeTextBox.Location = new System.Drawing.Point(0, 0);
|
|
|
|
+ this.ConvertedCodeTextBox.Name = "ConvertedCodeTextBox";
|
|
|
|
+ this.ConvertedCodeTextBox.Size = new System.Drawing.Size(741, 283);
|
|
|
|
+ this.ConvertedCodeTextBox.TabIndex = 1;
|
|
|
|
+ this.ConvertedCodeTextBox.Text = "";
|
|
|
|
+ this.ConvertedCodeTextBox.WordWrap = false;
|
|
|
|
+ //
|
|
|
|
+ // flowLayoutPanel2
|
|
|
|
+ //
|
|
|
|
+ this.flowLayoutPanel2.Controls.Add(this.ConvertCodeButton);
|
|
|
|
+ this.flowLayoutPanel2.Controls.Add(this.CopyButton);
|
|
|
|
+ this.flowLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Top;
|
|
|
|
+ this.flowLayoutPanel2.Location = new System.Drawing.Point(3, 3);
|
|
|
|
+ this.flowLayoutPanel2.Name = "flowLayoutPanel2";
|
|
|
|
+ this.flowLayoutPanel2.Size = new System.Drawing.Size(741, 32);
|
|
|
|
+ this.flowLayoutPanel2.TabIndex = 6;
|
|
|
|
+ //
|
|
|
|
+ // ConvertCodeButton
|
|
|
|
+ //
|
|
|
|
+ this.ConvertCodeButton.Location = new System.Drawing.Point(3, 3);
|
|
|
|
+ this.ConvertCodeButton.Name = "ConvertCodeButton";
|
|
|
|
+ this.ConvertCodeButton.Size = new System.Drawing.Size(98, 23);
|
|
|
|
+ this.ConvertCodeButton.TabIndex = 0;
|
|
|
|
+ this.ConvertCodeButton.Text = "Convert";
|
|
|
|
+ this.ConvertCodeButton.UseVisualStyleBackColor = true;
|
|
|
|
+ this.ConvertCodeButton.Click += new System.EventHandler(this.ConvertCode_Click);
|
|
|
|
+ //
|
|
|
|
+ // CopyButton
|
|
|
|
+ //
|
|
|
|
+ this.CopyButton.Location = new System.Drawing.Point(107, 3);
|
|
|
|
+ this.CopyButton.Name = "CopyButton";
|
|
|
|
+ this.CopyButton.Size = new System.Drawing.Size(98, 23);
|
|
|
|
+ this.CopyButton.TabIndex = 0;
|
|
|
|
+ this.CopyButton.Text = "Copy";
|
|
|
|
+ this.CopyButton.UseVisualStyleBackColor = true;
|
|
|
|
+ this.CopyButton.Click += new System.EventHandler(this.CopyButton_Click);
|
|
|
|
+ //
|
|
// MainForm
|
|
// MainForm
|
|
//
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
@@ -1103,6 +1198,12 @@
|
|
this.splitContainer1.ResumeLayout(false);
|
|
this.splitContainer1.ResumeLayout(false);
|
|
this.flowLayoutPanel1.ResumeLayout(false);
|
|
this.flowLayoutPanel1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.RsaKeySizeUpDown)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.RsaKeySizeUpDown)).EndInit();
|
|
|
|
+ this.tabPage8.ResumeLayout(false);
|
|
|
|
+ this.splitContainer2.Panel1.ResumeLayout(false);
|
|
|
|
+ this.splitContainer2.Panel2.ResumeLayout(false);
|
|
|
|
+ ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
|
|
|
|
+ this.splitContainer2.ResumeLayout(false);
|
|
|
|
+ this.flowLayoutPanel2.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
|
|
}
|
|
}
|
|
@@ -1185,6 +1286,13 @@
|
|
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
|
|
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
|
|
private System.Windows.Forms.RichTextBox RsaPrivateKeyTextBox;
|
|
private System.Windows.Forms.RichTextBox RsaPrivateKeyTextBox;
|
|
private System.Windows.Forms.RichTextBox RsaPublicKeyTextBox;
|
|
private System.Windows.Forms.RichTextBox RsaPublicKeyTextBox;
|
|
|
|
+ private System.Windows.Forms.TabPage tabPage8;
|
|
|
|
+ private System.Windows.Forms.SplitContainer splitContainer2;
|
|
|
|
+ private System.Windows.Forms.RichTextBox InputCodeTextBox;
|
|
|
|
+ private System.Windows.Forms.RichTextBox ConvertedCodeTextBox;
|
|
|
|
+ private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2;
|
|
|
|
+ private System.Windows.Forms.Button ConvertCodeButton;
|
|
|
|
+ private System.Windows.Forms.Button CopyButton;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|