728x90
반응형
WPF & C# - System.Windows.Point, System.Drawing.Point, PointToScreen 형변환 ( 스크린, 화면, 포인트 ) |
System.Windows.Point 와 System.Drawing.Point 형변환
1 2 3 4 5 6 7 | private void grid_MouseDown(object sender, MouseButtonEventArgs e) { System.Windows.Point pt1 = e.GetPosition(grid); System.Drawing.Point dPoint1 = new System.Drawing.Point((int)pt1.X, (int)pt1.Y); System.Windows.Point sPoint1 = new System.Windows.Point((int)dPoint1.X, (int)dPoint1.Y); } | cs |
System.Windows.Point pt = e.GetPosition(win1);
System.Windows.Point ptScreen = PointToScreen(pt);
System.Windows.Point ptPoint = PointFromScreen(ptScreen);
위에서처럼 변경도 가능하다.
728x90
반응형
'Programing (프로그래밍) > WPF & C# (C Sharp)' 카테고리의 다른 글
WPF & C# - 간단하게 Loading 표현하기 ( 로딩 이미지 / 대기중 / 이미지 / 로테이션 / rotatetion / 회전 / 더블애니메이션 / DoubleAnimation ) (2) | 2018.07.05 |
---|---|
WPF & C# - 중복실행방지 2가지 방법 ( 이중실행 / Titile명 기준 / 뮤택스 / 뮤텍스 / Mutex ) (0) | 2018.07.04 |
WPF & C# - 객체 위치 (0) | 2018.06.21 |
WPF & C# - toastMessage 처럼 보이기 ( 토스트메세지 / 토스트메시지 / ToastMsg ) (0) | 2018.06.21 |
WPF & C# - SQLite DB Browser ( SQLite3 / SQLiteBrowser / SQLite브라우저 ) (0) | 2018.06.18 |
WPF & C# - dotConnect for SQLite 5.10 Standard (Free) ( SQLite / Visual Studio / VS / 비주얼스튜디오 ) (0) | 2018.06.18 |
WPF & C# - SQLite Sample ( 샘플 / SQLlite) (2) | 2018.06.16 |
WPF & C# - SQLite 에러 조치 방안 ( SQLlite ) (0) | 2018.06.15 |