diff options
| author | Alee14 <alee14498@gmail.com> | 2018-09-01 23:31:03 -0400 |
|---|---|---|
| committer | Alee14 <alee14498@gmail.com> | 2018-09-01 23:31:03 -0400 |
| commit | 52376ce623346e257c2b7845d0d2414e7653a6dd (patch) | |
| tree | bace831eeea5bc4933398fddf45016ee3f6ba4ad /Project Ports/Programs/FileManager.cs | |
| parent | 71fc0fa9c881d85eb8bb4037c6415cf893914e6f (diff) | |
| download | Project-Silicon-52376ce623346e257c2b7845d0d2414e7653a6dd.tar.gz Project-Silicon-52376ce623346e257c2b7845d0d2414e7653a6dd.tar.bz2 Project-Silicon-52376ce623346e257c2b7845d0d2414e7653a6dd.zip | |
File manager rewrite (not done)
Diffstat (limited to 'Project Ports/Programs/FileManager.cs')
| -rw-r--r-- | Project Ports/Programs/FileManager.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Project Ports/Programs/FileManager.cs b/Project Ports/Programs/FileManager.cs index fd3931e..c72378d 100644 --- a/Project Ports/Programs/FileManager.cs +++ b/Project Ports/Programs/FileManager.cs @@ -1,4 +1,5 @@ using System; +using System.IO; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; @@ -7,11 +8,13 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; +using PortEngine; namespace Project_Ports.Programs { public partial class FileManager : UserControl { + List<string> listFiles = new List<string>(); public FileManager() { InitializeComponent(); @@ -19,7 +22,9 @@ namespace Project_Ports.Programs private void FileManager_Load(object sender, EventArgs e) { - + listFiles.Clear(); + listView.Items.Clear(); + } } } |
