일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- Console
- OpenXLSX 한글
- ExtendWith
- wxWidget
- LINK2001
- Plugins
- __snprintf
- OpenCPN
- 확인할 수 없는 외부 기호
- _sprintf
- SQLite3
- __vsnprintf
- 의존주입
- c++ set struct
- Flutter
- .gitattributes
- 사전설치
- git 최초 설정
- Mqtt
- winsock.h Broadcast
- 설치 테스트
- c2678
- 멀티바이트 문자 집합 사용
- git 대용량 파일
- 정적 라이브러리에서 MFC 사용
- esp-wroom-32d
- MFC
- sts4
- c++ Broadcast
- OpenCPN설치
- Today
- Total
세상을 이롭게
[VS2019] 창 분할시 재시작 하는 문제 본문
Unexpected VS crash when docking or splitting windows
[severity:It's more difficult to complete my work] Visual Studio started crashing when docking windows or splitting them via the mouse. Curiously, ...
developercommunity.visualstudio.com
KB 업데이트를 삭제하는 방법과 devenv.exe.config를 수정하는 방법이 있었다.
본인은 devenv.exe.config 를 수정하는 방법으로 해결하였다.
[관리자 권한 필요]
위 링크에서 이렇게 말한다.
Edit %InstallRoot%\Common7\IDE\devenv.exe.config and %LocalAppData%\Microsoft\VisualStudio\16.0_xxx\devenv.exe.config and append the following text to the <AppContextSwitchOverrides> element’s value attribute:
;Switch.System.Windows.Interop.MouseInput.OptOutOfMoveToChromedWindowFix=true;Switch.System.Windows.Interop.MouseInput.DoNotOptOutOfMoveToChromedWindowFix=true
After restarting VS, you should be able to drag your VS windows around without crashing.
직독직해 능력을 발휘하여 우리는 다음과 같은
- %InstallRoot%\Common7\IDE\devenv.exe.config
- %LocalAppData%\Microsoft\VisualStudio\16.0_xxx\devenv.exe.config
파일에 대해 AppContextSwitchOverrides 속성에
;Switch.System.Windows.Interop.MouseInput.OptOutOfMoveToChromedWindowFix=true;Switch.System.Windows.Interop.MouseInput.DoNotOptOutOfMoveToChromedWindowFix=true
문장을 추가한다.
위 해결방법에서는 두 경로에 대해 해주라고 이야기 하였으나 1번 경로에만 해주어도 괜찮았다.
이상.
'C,C++' 카테고리의 다른 글
[C++] LNK2001, LNK1120 Class static 사용시 문제 (0) | 2022.02.10 |
---|---|
VS MSB8008: 지정된 플랫폼 도구 집합(v142)이 설치되지 않았거나 올바르지 않습니다. (0) | 2021.11.29 |
VS Pointer Debugging (기초) (0) | 2021.11.29 |
VS LNK1104: 'kernel32.lib' 파일을 열 수 없습니다. (0) | 2021.11.25 |
[winbase.h] ini 형식 파일 작성하기 (0) | 2021.05.26 |