├── .gitattributes ├── .gitignore ├── README.md ├── pictures ├── findwindow.png ├── mainwindow.png └── networkwindow.png └── src ├── Windows.RegistryEditor.sln └── Windows.RegistryEditor ├── App.config ├── Events ├── FindResultsArgs.cs ├── FindSingleResultArgs.cs ├── ProgressArgs.cs ├── ProgressChangedArgs.cs ├── ProgressFinishedArgs.cs └── ProgressStartedArgs.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── RegistryEditor.csproj ├── Resources ├── app.ico └── loader_clock.gif ├── Utils ├── Native │ ├── NativeListViewItem.cs │ └── NativeMethods.cs ├── RegistryUtils.cs ├── Stopwatch.cs └── Utility.cs ├── Views ├── Controls │ ├── CheckBoxes.Designer.cs │ ├── CheckBoxes.cs │ ├── ListViewEx.cs │ ├── Loader.Designer.cs │ └── Loader.cs ├── FindWindow.Designer.cs ├── FindWindow.cs ├── MainWindow.Designer.cs ├── MainWindow.cs ├── NetworkWindow.Designer.cs └── NetworkWindow.cs └── app.manifest /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/README.md -------------------------------------------------------------------------------- /pictures/findwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/pictures/findwindow.png -------------------------------------------------------------------------------- /pictures/mainwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/pictures/mainwindow.png -------------------------------------------------------------------------------- /pictures/networkwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/pictures/networkwindow.png -------------------------------------------------------------------------------- /src/Windows.RegistryEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor.sln -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/App.config -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Events/FindResultsArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Events/FindResultsArgs.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Events/FindSingleResultArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Events/FindSingleResultArgs.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Events/ProgressArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Events/ProgressArgs.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Events/ProgressChangedArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Events/ProgressChangedArgs.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Events/ProgressFinishedArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Events/ProgressFinishedArgs.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Events/ProgressStartedArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Events/ProgressStartedArgs.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Program.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/RegistryEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/RegistryEditor.csproj -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Resources/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Resources/app.ico -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Resources/loader_clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Resources/loader_clock.gif -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Utils/Native/NativeListViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Utils/Native/NativeListViewItem.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Utils/Native/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Utils/Native/NativeMethods.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Utils/RegistryUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Utils/RegistryUtils.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Utils/Stopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Utils/Stopwatch.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Utils/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Utils/Utility.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Views/Controls/CheckBoxes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Views/Controls/CheckBoxes.Designer.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Views/Controls/CheckBoxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Views/Controls/CheckBoxes.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Views/Controls/ListViewEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Views/Controls/ListViewEx.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Views/Controls/Loader.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Views/Controls/Loader.Designer.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Views/Controls/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Views/Controls/Loader.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Views/FindWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Views/FindWindow.Designer.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Views/FindWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Views/FindWindow.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Views/MainWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Views/MainWindow.Designer.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Views/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Views/MainWindow.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Views/NetworkWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Views/NetworkWindow.Designer.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/Views/NetworkWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/Views/NetworkWindow.cs -------------------------------------------------------------------------------- /src/Windows.RegistryEditor/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giladreich/RegistryEditor/HEAD/src/Windows.RegistryEditor/app.manifest --------------------------------------------------------------------------------