Мне нужно добавить элементы в контекстное меню, когда я перетаскиваю файл, используя правую кнопку мыши.
Мне удается добавить элемент в реестр, просто щелкнув правой кнопкой мыши файл, но не при перетаскиваниив другую папку.
This is what I'm using just for the right click and works fine.
[HKEY_CLASSES_ROOT\*\shell\TrimResizePicture]
@="Players/Pictures Trim Resize to *x1500"
"Icon"="C:\\cmd_Scripts\\photo2.ico,0"
[HKEY_CLASSES_ROOT\*\shell\TrimResizePicture\command]
@="\"C:\\cmd_Scripts\\resize_trim_picture.bat\" \"%1\""
This is what I've tried for drag and drop right click, and is not working.
[HKEY_CLASSES_ROOT\*\shellex\DragDropHandlers\TrimResizePicture]
@="Players/Pictures Trim Resize to *x1500"
"Icon"="C:\\cmd_Scripts\\photo2.ico,0"
[HKEY_CLASSES_ROOT\*\shellex\DragDropHandlers\TrimResizePicture\command]
@="\"C:\\cmd_Scripts\\resize_trim_picture.bat\" \"%1\""
Это меню, которое мне нужно добавить
Спасибо