최근 프로젝트 팀에서 개발한 작은 도구에서 마우스 오른쪽 버튼 클릭 메뉴에 열기 방법을 추가하고 싶었습니다. Youdao Cloud Notes를 예로 들어 요구 사항을 분해하고 코드를 작성했습니다
1. 해체 요구 사항 :
오른쪽 클릭 메뉴를 수동으로 여는 방법:
1단계: 레지스트리 열기 editor, Win +R->"regedit" 입력
2단계: HKEY_CLASS ES_ROOT/*/shell (또는 HKEY_LOCAL_MACHINE/SOFTWARE/Classes/*/shell, 두 디렉터리는 동일합니다.) 키 추가: YNote, 그런 다음 이 항목에서 새 항목 명령을 생성하고 를 편집합니다. string , 애플리케이션 경로를 추가하고 마지막으로 경로와 이름 뒤에 공백과 "%1"을 추가한 다음 마우스 오른쪽 버튼을 클릭하여 YNote
2. 코드 구현
방법1: _winreg 모듈을 통해 구현:
import _winreg from _winreg import KEY_ALL_ACCESS with _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, r"SOFTWARE\Classes\*\shell") as key: print key newKey = _winreg.CreateKeyEx(key,"YNote",0,KEY_ALL_ACCESS) sub_key = _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE,r"SOFTWARE\Classes\*\shell\YNote") newsubKey = _winreg.CreateKey(sub_key,"command") _winreg.SetValue(newsubKey,"(Default)",1,"\"C:\Program Files (x86)\Youdao\YoudaoNote\YoudaoNote.exe\" \"%1\"")
방법2: win32api 및 win32con 모듈 구현
import win32api import win32con key = win32api.RegOpenKey(win32con.HKEY_LOCAL_MACHINE,r"SOFTWARE\Classes\*\shell") newKey = win32api.RegCreateKey(key,"YNote") sub_key = win32api.RegOpenKey(win32con.HKEY_LOCAL_MACHINE,r"SOFTWARE\Classes\*\shell\YNote") newsubKey = win32api.RegCreateKey(sub_key,"command") win32api.RegSetValue(newsubKey,"(Default)", win32con.REG_SZ,"\"C:\Program Files (x86)\Youdao\YoudaoNote\YoudaoNote.exe\" \"%1\"")
을 통과했습니다.
위 내용은 Python을 사용하여 애플리케이션의 마우스 오른쪽 버튼 클릭 메뉴에 open 메소드를 추가하는 단계에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!