728x90
1. 커서 변경 시작 위치
Application.Current.Dispatcher.Invoke(() =>
{
System.Windows.Input.Mouse.OverrideCursor = System.Windows.Input.Cursors.Wait;
});
2. 커서 복원 위치
Application.Current.Dispatcher.Invoke(() =>
{
System.Windows.Input.Mouse.OverrideCursor = null;
});
'기본카테고리' 카테고리의 다른 글
[VC++] TrayIcon source (0) | 2022.11.02 |
---|---|
[vc++] URLDownloadToFile 로 파일 다운로드 (0) | 2021.04.13 |
[c#] doxygen에서 다중행 출력하는 방법 (0) | 2020.12.04 |
[c#] 주석의 태그 내부의 정보를 Visual Studio 및 기타 도구에서 IntelliSense와 같은 서비스를 제공하는 데 사용할 수 있도록 함 (0) | 2020.12.04 |
[C#] DataGridView에서 가로 Scrollbar가 표시가 안되게... (0) | 2020.10.31 |