├── .gitignore ├── Controls ├── ComboBox.cs ├── ListView.cs └── TreeView.cs ├── EasyExplorer.Designer.cs ├── EasyExplorer.cs ├── EasyExplorer.csproj ├── EasyExplorer.resx ├── EasyExplorer.sln ├── Images ├── BrowseFolders.png ├── BrowserBack.png ├── BrowserForward.png └── BrowserUp.png ├── LICENSE ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── README.md ├── Shell ├── Interfaces │ ├── IAdviseSink.cs │ ├── IContextMenu.cs │ ├── IDataObject.cs │ ├── IDragSourceHelper.cs │ ├── IDropSource.cs │ ├── IDropTarget.cs │ ├── IDropTargetHelper.cs │ ├── IEnumFORMATETC.cs │ ├── IEnumIDList.cs │ ├── IEnumSTATSTG.cs │ ├── IQueryInfo.cs │ ├── IShellExtInit.cs │ ├── IShellFolder.cs │ ├── IStorage.cs │ └── IStream.cs ├── PIDL.cs ├── ShellAPI.cs ├── ShellBrowser.cs ├── ShellBrowserUpdater.cs ├── ShellHelper.cs ├── ShellImageList.cs ├── ShellItem.cs └── StreamStorage.cs ├── Website ├── ee1.png └── ee2.png └── Wrappers ├── BrowserContextMenuWrappers.cs ├── BrowserDragWrappers.cs ├── BrowserDropWrappers.cs └── BrowserPluginWrapper.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/.gitignore -------------------------------------------------------------------------------- /Controls/ComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Controls/ComboBox.cs -------------------------------------------------------------------------------- /Controls/ListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Controls/ListView.cs -------------------------------------------------------------------------------- /Controls/TreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Controls/TreeView.cs -------------------------------------------------------------------------------- /EasyExplorer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/EasyExplorer.Designer.cs -------------------------------------------------------------------------------- /EasyExplorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/EasyExplorer.cs -------------------------------------------------------------------------------- /EasyExplorer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/EasyExplorer.csproj -------------------------------------------------------------------------------- /EasyExplorer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/EasyExplorer.resx -------------------------------------------------------------------------------- /EasyExplorer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/EasyExplorer.sln -------------------------------------------------------------------------------- /Images/BrowseFolders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Images/BrowseFolders.png -------------------------------------------------------------------------------- /Images/BrowserBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Images/BrowserBack.png -------------------------------------------------------------------------------- /Images/BrowserForward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Images/BrowserForward.png -------------------------------------------------------------------------------- /Images/BrowserUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Images/BrowserUp.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/LICENSE -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/README.md -------------------------------------------------------------------------------- /Shell/Interfaces/IAdviseSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/Interfaces/IAdviseSink.cs -------------------------------------------------------------------------------- /Shell/Interfaces/IContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/Interfaces/IContextMenu.cs -------------------------------------------------------------------------------- /Shell/Interfaces/IDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/Interfaces/IDataObject.cs -------------------------------------------------------------------------------- /Shell/Interfaces/IDragSourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/Interfaces/IDragSourceHelper.cs -------------------------------------------------------------------------------- /Shell/Interfaces/IDropSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/Interfaces/IDropSource.cs -------------------------------------------------------------------------------- /Shell/Interfaces/IDropTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/Interfaces/IDropTarget.cs -------------------------------------------------------------------------------- /Shell/Interfaces/IDropTargetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/Interfaces/IDropTargetHelper.cs -------------------------------------------------------------------------------- /Shell/Interfaces/IEnumFORMATETC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/Interfaces/IEnumFORMATETC.cs -------------------------------------------------------------------------------- /Shell/Interfaces/IEnumIDList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/Interfaces/IEnumIDList.cs -------------------------------------------------------------------------------- /Shell/Interfaces/IEnumSTATSTG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/Interfaces/IEnumSTATSTG.cs -------------------------------------------------------------------------------- /Shell/Interfaces/IQueryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/Interfaces/IQueryInfo.cs -------------------------------------------------------------------------------- /Shell/Interfaces/IShellExtInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/Interfaces/IShellExtInit.cs -------------------------------------------------------------------------------- /Shell/Interfaces/IShellFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/Interfaces/IShellFolder.cs -------------------------------------------------------------------------------- /Shell/Interfaces/IStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/Interfaces/IStorage.cs -------------------------------------------------------------------------------- /Shell/Interfaces/IStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/Interfaces/IStream.cs -------------------------------------------------------------------------------- /Shell/PIDL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/PIDL.cs -------------------------------------------------------------------------------- /Shell/ShellAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/ShellAPI.cs -------------------------------------------------------------------------------- /Shell/ShellBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/ShellBrowser.cs -------------------------------------------------------------------------------- /Shell/ShellBrowserUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/ShellBrowserUpdater.cs -------------------------------------------------------------------------------- /Shell/ShellHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/ShellHelper.cs -------------------------------------------------------------------------------- /Shell/ShellImageList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/ShellImageList.cs -------------------------------------------------------------------------------- /Shell/ShellItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/ShellItem.cs -------------------------------------------------------------------------------- /Shell/StreamStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Shell/StreamStorage.cs -------------------------------------------------------------------------------- /Website/ee1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Website/ee1.png -------------------------------------------------------------------------------- /Website/ee2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Website/ee2.png -------------------------------------------------------------------------------- /Wrappers/BrowserContextMenuWrappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Wrappers/BrowserContextMenuWrappers.cs -------------------------------------------------------------------------------- /Wrappers/BrowserDragWrappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Wrappers/BrowserDragWrappers.cs -------------------------------------------------------------------------------- /Wrappers/BrowserDropWrappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Wrappers/BrowserDropWrappers.cs -------------------------------------------------------------------------------- /Wrappers/BrowserPluginWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/EasyExplorer/HEAD/Wrappers/BrowserPluginWrapper.cs --------------------------------------------------------------------------------