├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── feature_request.md ├── .gitignore ├── NPC File Browser ├── App.config ├── FileControl.Designer.cs ├── FileControl.cs ├── FileControl.resx ├── FileSearch.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Helper.cs ├── ModernTextbox.cs ├── NPC File Explorer.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SideBarDriveControl.Designer.cs ├── SideBarDriveControl.cs ├── SideBarDriveControl.resx ├── SidebarFileControl.Designer.cs ├── SidebarFileControl.cs ├── SidebarFileControl.resx ├── icon.ico └── packages.config ├── NPC File Explorer.sln └── SetupProject └── SetupProject.vdproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /NPC File Browser/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/App.config -------------------------------------------------------------------------------- /NPC File Browser/FileControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/FileControl.Designer.cs -------------------------------------------------------------------------------- /NPC File Browser/FileControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/FileControl.cs -------------------------------------------------------------------------------- /NPC File Browser/FileControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/FileControl.resx -------------------------------------------------------------------------------- /NPC File Browser/FileSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/FileSearch.cs -------------------------------------------------------------------------------- /NPC File Browser/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/Form1.Designer.cs -------------------------------------------------------------------------------- /NPC File Browser/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/Form1.cs -------------------------------------------------------------------------------- /NPC File Browser/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/Form1.resx -------------------------------------------------------------------------------- /NPC File Browser/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/Helper.cs -------------------------------------------------------------------------------- /NPC File Browser/ModernTextbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/ModernTextbox.cs -------------------------------------------------------------------------------- /NPC File Browser/NPC File Explorer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/NPC File Explorer.csproj -------------------------------------------------------------------------------- /NPC File Browser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/Program.cs -------------------------------------------------------------------------------- /NPC File Browser/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NPC File Browser/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /NPC File Browser/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/Properties/Resources.resx -------------------------------------------------------------------------------- /NPC File Browser/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /NPC File Browser/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/Properties/Settings.settings -------------------------------------------------------------------------------- /NPC File Browser/SideBarDriveControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/SideBarDriveControl.Designer.cs -------------------------------------------------------------------------------- /NPC File Browser/SideBarDriveControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/SideBarDriveControl.cs -------------------------------------------------------------------------------- /NPC File Browser/SideBarDriveControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/SideBarDriveControl.resx -------------------------------------------------------------------------------- /NPC File Browser/SidebarFileControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/SidebarFileControl.Designer.cs -------------------------------------------------------------------------------- /NPC File Browser/SidebarFileControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/SidebarFileControl.cs -------------------------------------------------------------------------------- /NPC File Browser/SidebarFileControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/SidebarFileControl.resx -------------------------------------------------------------------------------- /NPC File Browser/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/icon.ico -------------------------------------------------------------------------------- /NPC File Browser/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Browser/packages.config -------------------------------------------------------------------------------- /NPC File Explorer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/NPC File Explorer.sln -------------------------------------------------------------------------------- /SetupProject/SetupProject.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CsharpProgramming/NPC-File-Explorer/HEAD/SetupProject/SetupProject.vdproj --------------------------------------------------------------------------------