Step 1 of fixing the issue with Auto Compute and Spacing

This commit is contained in:
2022-10-10 19:34:53 -05:00
parent 9e8bee43c8
commit 68d4b861ea
13 changed files with 40 additions and 23 deletions

View File

@@ -67,12 +67,13 @@ namespace WindowsFormsApplication1
this.autoComputeToolTip = new System.Windows.Forms.ToolTip(this.components);
this.paddingToggle = new System.Windows.Forms.CheckBox();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.paddingOffsetTextBox = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.paddingOffsetTextBox = new System.Windows.Forms.TextBox();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.label2 = new System.Windows.Forms.Label();
this.spacingOffsetTextBox = new System.Windows.Forms.TextBox();
this.spacingToggle = new System.Windows.Forms.CheckBox();
this.debugLabel = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.binaryGroupBox.SuspendLayout();
this.groupBox2.SuspendLayout();
@@ -290,16 +291,6 @@ namespace WindowsFormsApplication1
this.groupBox5.TabStop = false;
this.groupBox5.Text = "Padding";
//
// paddingOffsetTextBox
//
this.paddingOffsetTextBox.Location = new System.Drawing.Point(7, 59);
this.paddingOffsetTextBox.Name = "paddingOffsetTextBox";
this.paddingOffsetTextBox.ReadOnly = true;
this.paddingOffsetTextBox.Size = new System.Drawing.Size(76, 20);
this.paddingOffsetTextBox.TabIndex = 10;
this.paddingOffsetTextBox.Text = "8";
this.paddingOffsetTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// label1
//
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
@@ -310,6 +301,16 @@ namespace WindowsFormsApplication1
this.label1.Text = "Padding offset";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// paddingOffsetTextBox
//
this.paddingOffsetTextBox.Location = new System.Drawing.Point(7, 59);
this.paddingOffsetTextBox.Name = "paddingOffsetTextBox";
this.paddingOffsetTextBox.ReadOnly = true;
this.paddingOffsetTextBox.Size = new System.Drawing.Size(76, 20);
this.paddingOffsetTextBox.TabIndex = 10;
this.paddingOffsetTextBox.Text = "8";
this.paddingOffsetTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// groupBox6
//
this.groupBox6.Controls.Add(this.label2);
@@ -354,11 +355,21 @@ namespace WindowsFormsApplication1
this.spacingToggle.UseVisualStyleBackColor = true;
this.spacingToggle.CheckedChanged += new System.EventHandler(this.spacingToggle_CheckedChanged);
//
// debugLabel
//
this.debugLabel.AutoSize = true;
this.debugLabel.Location = new System.Drawing.Point(160, 311);
this.debugLabel.Name = "debugLabel";
this.debugLabel.Size = new System.Drawing.Size(63, 13);
this.debugLabel.TabIndex = 14;
this.debugLabel.Text = "debugLabel";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(396, 364);
this.Controls.Add(this.debugLabel);
this.Controls.Add(this.groupBox6);
this.Controls.Add(this.groupBox5);
this.Controls.Add(this.autoCompute);
@@ -419,6 +430,7 @@ namespace WindowsFormsApplication1
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox spacingOffsetTextBox;
private System.Windows.Forms.CheckBox spacingToggle;
private System.Windows.Forms.Label debugLabel;
}
}