프로그래밍/WPF
-
WPF 도서, 공부 자료 정리 (MVVM 패턴 포함)프로그래밍/WPF 2021. 12. 6. 13:59
0. WPF 능력자이신 arong(밍)님의 블로그, 깃허브 예제 https://arong.info/List/List/WPF?id=0 List - Arong note 268 [WPF] Dependency Property (0) admin 2020-11-17 331 arong.info https://github.com/tyeom/WPFKakaoTalk GitHub - tyeom/WPFKakaoTalk: 카카오톡PC 버전 WPF Clone 카카오톡PC 버전 WPF Clone. Contribute to tyeom/WPFKakaoTalk development by creating an account on GitHub. github.com https://github.com/tyeom/WPFMusic GitHub -..
-
WPF 제목표시줄이 아닌 다른 곳을 클릭해도 윈도우를 움직이게 하는 방법, Make WPF window draggable프로그래밍/WPF 2021. 12. 3. 11:25
c# 윈폼에서는 뭔가 어렵게 작업했던 것 같은데 wpf는 마우스 이벤트 하나에 DragMove() 를 사용하면 된다. 윈도우.xaml 파일에 MouseDown 이벤트 추가 윈도우. xmal.cs 비하인드 파일에 다음과 같이 작성 private void Window_MouseDown(object sender, MouseButtonEventArgs e) { if (e.ChangedButton == MouseButton.Left) this.DragMove(); }