feat: 1. drag to panel address combobox opens the archive/dir; 2. mouse forward/backward key nav

This commit is contained in:
shunf4
2024-05-11 00:29:54 +08:00
parent 92304fbc6a
commit 0e3812de49
6 changed files with 77 additions and 2 deletions

View File

@@ -12,3 +12,16 @@ If the artifact gets expired, you may need to manually trigger it again somehow.
- https://github.com/glachancecmaisonneuve/Easy7-Zip
- https://github.com/mcmilk/7-Zip-zstd
- https://github.com/treysis/Easy-7-Zip-ZS (Unused)
### DevNote
print message in a dialog
```
#include <winuser.h>
#include <strsafe.h>
char a[100] {};
StringCbPrintfA(a, 100, "index=%u SoleFolderIndex=%ull", _index, SoleFolderIndex);
MessageBoxA(0, a, "AAA", MB_ICONERROR);
```