Improve display

This commit is contained in:
Michael Bucari-Tovo 2022-05-22 20:00:06 -06:00
parent f86bdba3c3
commit 3cb43e5d3e
2 changed files with 15 additions and 12 deletions

View file

@ -29,6 +29,7 @@
private void InitializeComponent()
{
this.panel1 = new System.Windows.Forms.Panel();
this.vScrollBar1 = new System.Windows.Forms.VScrollBar();
this.SuspendLayout();
//
// panel1
@ -39,12 +40,21 @@
this.panel1.BackColor = System.Drawing.SystemColors.ControlDark;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(377, 505);
this.panel1.Size = new System.Drawing.Size(357, 505);
this.panel1.TabIndex = 0;
//
// vScrollBar1
//
this.vScrollBar1.Dock = System.Windows.Forms.DockStyle.Right;
this.vScrollBar1.Location = new System.Drawing.Point(360, 0);
this.vScrollBar1.Name = "vScrollBar1";
this.vScrollBar1.Size = new System.Drawing.Size(17, 505);
this.vScrollBar1.TabIndex = 0;
//
// VirtualFlowControl
//
this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.Controls.Add(this.vScrollBar1);
this.Controls.Add(this.panel1);
this.Name = "VirtualFlowControl";
this.Size = new System.Drawing.Size(377, 505);
@ -55,5 +65,6 @@
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.VScrollBar vScrollBar1;
}
}