Change default border width

This commit is contained in:
Michael Bucari-Tovo 2022-05-09 20:37:41 -06:00
parent 803eef3825
commit 04665fea36
2 changed files with 3 additions and 3 deletions

View File

@ -37,11 +37,11 @@
| System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.textBox1.BackColor = System.Drawing.SystemColors.ControlLightLight; this.textBox1.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.textBox1.Location = new System.Drawing.Point(3, 3); this.textBox1.Location = new System.Drawing.Point(5, 5);
this.textBox1.Multiline = true; this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1"; this.textBox1.Name = "textBox1";
this.textBox1.ReadOnly = true; this.textBox1.ReadOnly = true;
this.textBox1.Size = new System.Drawing.Size(544, 144); this.textBox1.Size = new System.Drawing.Size(540, 140);
this.textBox1.TabIndex = 0; this.textBox1.TabIndex = 0;
// //
// DescriptionDisplay // DescriptionDisplay

View File

@ -9,7 +9,7 @@ namespace LibationWinForms
{ {
public partial class DescriptionDisplay : Form public partial class DescriptionDisplay : Form
{ {
private int borderThickness = 0; private int borderThickness = 5;
public int BorderThickness public int BorderThickness
{ {