├── .gitignore ├── HardwareHelperLib ├── HardwareHelperLib.cs ├── HardwareHelperLib.csproj └── Properties │ └── AssemblyInfo.cs ├── LICENSE ├── README.md ├── WinDeviceManagerLight.sln ├── WinDeviceManagerUI ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── WinDeviceManagerUI.csproj └── app.config └── docs └── devicemanager_preview.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/.gitignore -------------------------------------------------------------------------------- /HardwareHelperLib/HardwareHelperLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/HardwareHelperLib/HardwareHelperLib.cs -------------------------------------------------------------------------------- /HardwareHelperLib/HardwareHelperLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/HardwareHelperLib/HardwareHelperLib.csproj -------------------------------------------------------------------------------- /HardwareHelperLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/HardwareHelperLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/README.md -------------------------------------------------------------------------------- /WinDeviceManagerLight.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/WinDeviceManagerLight.sln -------------------------------------------------------------------------------- /WinDeviceManagerUI/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/WinDeviceManagerUI/Form1.Designer.cs -------------------------------------------------------------------------------- /WinDeviceManagerUI/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/WinDeviceManagerUI/Form1.cs -------------------------------------------------------------------------------- /WinDeviceManagerUI/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/WinDeviceManagerUI/Form1.resx -------------------------------------------------------------------------------- /WinDeviceManagerUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/WinDeviceManagerUI/Program.cs -------------------------------------------------------------------------------- /WinDeviceManagerUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/WinDeviceManagerUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinDeviceManagerUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/WinDeviceManagerUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WinDeviceManagerUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/WinDeviceManagerUI/Properties/Resources.resx -------------------------------------------------------------------------------- /WinDeviceManagerUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/WinDeviceManagerUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WinDeviceManagerUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/WinDeviceManagerUI/Properties/Settings.settings -------------------------------------------------------------------------------- /WinDeviceManagerUI/WinDeviceManagerUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/WinDeviceManagerUI/WinDeviceManagerUI.csproj -------------------------------------------------------------------------------- /WinDeviceManagerUI/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/WinDeviceManagerUI/app.config -------------------------------------------------------------------------------- /docs/devicemanager_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinao/WinDeviceManagerLight/HEAD/docs/devicemanager_preview.png --------------------------------------------------------------------------------