diff options
Diffstat (limited to 'Project Ports')
| -rw-r--r-- | Project Ports/Programs/FileManager.Designer.cs | 5 | ||||
| -rw-r--r-- | Project Ports/Programs/FileManager.cs | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/Project Ports/Programs/FileManager.Designer.cs b/Project Ports/Programs/FileManager.Designer.cs index b48cd9c..94c2ba8 100644 --- a/Project Ports/Programs/FileManager.Designer.cs +++ b/Project Ports/Programs/FileManager.Designer.cs @@ -59,9 +59,9 @@ // panel3 // this.panel3.BackColor = System.Drawing.Color.Silver; - this.panel3.Location = new System.Drawing.Point(171, 67); + this.panel3.Location = new System.Drawing.Point(172, 67); this.panel3.Name = "panel3"; - this.panel3.Size = new System.Drawing.Size(664, 560); + this.panel3.Size = new System.Drawing.Size(663, 560); this.panel3.TabIndex = 2; // // button1 @@ -105,6 +105,7 @@ this.Controls.Add(this.panel1); this.Name = "FileManager"; this.Size = new System.Drawing.Size(835, 627); + this.Load += new System.EventHandler(this.FileManager_Load); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.ResumeLayout(false); diff --git a/Project Ports/Programs/FileManager.cs b/Project Ports/Programs/FileManager.cs index 23e6068..fd3931e 100644 --- a/Project Ports/Programs/FileManager.cs +++ b/Project Ports/Programs/FileManager.cs @@ -16,5 +16,10 @@ namespace Project_Ports.Programs { InitializeComponent(); } + + private void FileManager_Load(object sender, EventArgs e) + { + + } } } |
