diff options
| author | Alee14 <alee14498@gmail.com> | 2018-08-29 16:01:08 -0400 |
|---|---|---|
| committer | Alee14 <alee14498@gmail.com> | 2018-08-29 16:01:08 -0400 |
| commit | f77481171a11cdcd3bbca46246d5060a998c2473 (patch) | |
| tree | 10d9d8b610ac49a840d4b0f2a9c5bb254d55991a /Project Ports/Programs/FileManager.cs | |
| parent | ba3ffab9cbe89d3f727494d6dd3cd8dafbb8d751 (diff) | |
| download | Project-Silicon-f77481171a11cdcd3bbca46246d5060a998c2473.tar.gz Project-Silicon-f77481171a11cdcd3bbca46246d5060a998c2473.tar.bz2 Project-Silicon-f77481171a11cdcd3bbca46246d5060a998c2473.zip | |
Added the file manager
Diffstat (limited to 'Project Ports/Programs/FileManager.cs')
| -rw-r--r-- | Project Ports/Programs/FileManager.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Project Ports/Programs/FileManager.cs b/Project Ports/Programs/FileManager.cs new file mode 100644 index 0000000..23e6068 --- /dev/null +++ b/Project Ports/Programs/FileManager.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Project_Ports.Programs +{ + public partial class FileManager : UserControl + { + public FileManager() + { + InitializeComponent(); + } + } +} |
